内联样式优先与Style标签
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| <!DOCTYPE html> <html lang="en">
<head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> h1 { color: red; } </style> </head> <body> <h1 style="color: blue;">CSS测试</h1> </body> </html>
|
后声明的优先于先声明的
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>style与link</title> <style> h1 { color: red; } </style> <link rel="stylesheet" href="./style.css"> </head> <body> <h1>CSS测试</h1> </body> </html>
|
style.css
Style标签优先于link标签
style标签在link标签后面的前提下,其实也是先后顺序的比较
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>style与link</title> <link rel="stylesheet" href="./style.css"> </head> <body> <style> h1 { color: red; } </style> <h1>CSS测试</h1> </body> </html>
|
style.css
id优先与class
即使class在id之后声明
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>class与id</title> <style> #text { color: red; } .text { color: blue; } </style> </head> <body> <h1 class="text" id="text">CSS测试</h1> </body>
</html>
|
选择器选择器越详细优先级越高
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>选择器优先级</title> <style> .parent h1 { color: red; } h1 { color: blue; } </style> </head> <body> <div class="parent"> <h1 id="text">CSS测试</h1> </div> </body> </html>
|