0
border dimensions
Why does it give you two ways of making a border, wouldn't it make more sense to put all the specifics in one place: .border1 { padding:10px; border:3px solid #ffee00; } as oppose to: .border2{ padding: 10px; border-style: solid; border-width: 2px; border-color: rgb(0, 153, 0); } ?
1 Resposta
+ 3
Some people may find more comfortable using the first way, meanwhile some others prefer the second one.
Sololearn just gives you more options.