I don't know well about css rules.
I've multiple classes with same property like "width".
When setting these classes to the Html tag,
whose width property is set to that tag?
For example.
.main{
width:600px;
border:1px solid #000;
}
.rule1{
width:400px;
min-height:10px;
}
.rule2{
width:300px;
background:#aaa;
}
<div class="main rule1 rule2">
Which rule's width property is set?
</div>