日期:2014-05-17 浏览次数:20729 次
<!--行内样式--> <h2>test</h2> <p style ="color: #ff0000; font-size: 24px" /> test </p> <!--内嵌样式表--> <head> <style type ="text/css"> p{ color: red; } </style> </head> <!--外部样式表--> <!--1、链接外部样式表--> <head> <link href ="url" rel ="stylesheet" type ="text/css" /> </head> <!--2、导入外部样式表--> <head> <!-- @import url("外部样式表CSS文件的路径和名称"); --> </head>