标签:ref 效果 yellow span 技术 red lin png image
css的三种样式
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Document</title> 6 <link rel="stylesheet" href="css/link.css" /> 7 <style> 8 h2{ 9 color: blue; 10 } 11 </style> 12 </head> 13 <body> 14 <h1 style="color: red;">内联样式</h1> 15 <!-- 实际在写页面时不提倡使用,在测试的时候可以使用 --> 16 17 <hr /> 18 <h2>内部样式</h2> 19 20 <hr /> 21 <h3>外部样式</h3> 22 <!-- 推荐使用 --> 23 </body> 24 </html>
link.css
h3{
color: yellowgreen;
}
效果
自勉++
标签:ref 效果 yellow span 技术 red lin png image
原文地址:https://www.cnblogs.com/woqiaodaima-xy/p/10514000.html