内联样式
style 属性可以包含任何 CSS 属性,用于控制标签的样式,即外观。
<html> <body style="background-color:yellow"> <h2 style="background-color:red">This is a heading</h2> <p style="background-color:green">This is a paragraph.</p> </body> </html>
style里的css属性有很多,参考相关文档。
外部样式
CSS 指层叠样式表 (Cascading Style Sheets)
评论