1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| <!DOCTYPE html> <html lang="zh-cn">
<head> <meta charset="utf-8"/>
<style> #p_hello{ color:blue; background-color: green; width: 40px; height: 20px; } div { color:blue; background-color: pink; width: 120px; height: 20px; } .span_hello{ color:yellow; background-color: blueviolet; font-size:30px; } </style> </head> <body> <p id="p_hello">hello</p> <div>hello,world</div> <div>hello,world</div> <span class="span_hello">hello</span> </body> </html>
|