Imagine I have created a class in my CSS, and this class is defined in 3 separate CSS files with different specifications...
In the first CSS file, the width is set to 10px
In the second CSS file, the width is changed to 20px
Finally, in the third CSS file, the width is adjusted to 30px
Now, in my HTML document, I link to CSS1, which also imports CSS2 at the beginning, which then further imports CSS3...
So, my question is: Which width value will be applied to the element, and how exactly is this decision determined?