批改状态:合格
老师批语:
@media(min-width:480px){html{font-size:12px}}/*当宽的像素最小为480px时,就执行里面的样式。*/
这个是id类选择器
<style>.id{color:red;}</style><div id="id"></div>
这个是class类选择器
<style>.class{color:red;}</style><div class="class"></div>
注意权限: id > class > 标签
<style>ul > :nth-of-type(2):not(li:nth-of-type(2)) {color: red;border: solid 1px;}</style><ul><li>1</li><li>2</li><li>3</li><p>p</p><p>p2</p><p>p3</p></ul>
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号