css高级和低级属性书写顺序
测试css高级和低级属性书写顺序的差异,并给出建议
by weiming le
HTML
<div>hahaha</div>
<p>hehehe</p>
CSS
div { height:30px; width:60px; border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px; border:2px solid orange; margin-bottom:20px; }
p { height:30px; width:60px; -webkit-border-radius:3px; -moz-border-radius:3px; border-radius:3px; border:2px solid orange; }