标签:style margin 优先 strong sheet ack logs log 样式
外部样式表
<head> <link rel="stylesheet" type="text/css" href="mystyle.css"> </head>
内部样式表
<head> <style type="text/css"> body {background-color: red} p {margin-left: 20px} </style> </head>
内联样式
<p style="color: red; margin-left: 20px"> This is a paragraph </p>
CSS优先级:内嵌样式 > 内部样式表 > 外部样式表
标签:style margin 优先 strong sheet ack logs log 样式
原文地址:http://www.cnblogs.com/buchizaodian/p/7076199.html