标签:style blog http color ar div html htm
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 4 <style type="text/css"> 5 6 body {background-color: yellow} 7 h1 {background-color: #00ff00} 8 h2 {background-color: transparent} 9 p {background-color: rgb(250,0,255)} 10 11 p.no2 {background-color: gray; padding: 20px;} 12 13 </style> 14 15 </head> 16 17 <body> 18 19 <h1>这是标题 1</h1> 20 <h1>这是标题 1.1</h1> 21 <h2>这是标题 2</h2> 22 <p>这是段落</p> 23 <p class="no2">这个段落设置了内边距。</p> 24 25 </body> 26 </html>
标签:style blog http color ar div html htm
原文地址:http://www.cnblogs.com/penger/p/3899380.html