xhtml
时间:2014-06-09 13:58:01
收藏:0
阅读:329
当单个文件需要特别样式时,就可以使用内部样式表。可以在 head 部分通过 <style> 标签定义内部样式表。
<head><style type="text/css">
body
{background-color: red}
p {margin-left:
20px}
</style>
</head>
原文:http://www.cnblogs.com/sky8-/p/3776663.html
评论(0)