12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- /* div {
- color: aqua !important;
- } */
- #word {
- color: #ff0;
- }
- ul li:first-child{
- color: red;
- }
- /* .text {
- color: blue;
- } */
- ul li:first-child {
- color: #ff0;
- }
- div {
- color: aquamarine;
- }
- </style>
- </head>
- <body>
- <div class="text" style="color: #ff0;">这个文字</div>
- <!-- <ul>
- <li class="text">1</li>
- <li>2</li>
- <li>3</li>
- <li>4</li>
- </ul> -->
- <!--
- css选择器优先级及权重:
- !important >内联样式(style)> id选择器 >类选择器(class)= 伪类选择器 = 属性选择器 > 标签选择器=伪元素选择器>通配符选择器
- 权重: 正无穷 1,0,0,0 0,1,0,0 0,0,1,0 0,0,0,1 0,0,0,0
- -->
- </body>
- </html>
|