百度空间的CSS运用 ]
既然百度空间开放了CSS,不来玩玩就可惜了
那么这里简要介绍一下CSS的运用3方式
第一种是包含在<head>...</head>标记里,例如:
<head>
<style type="text/css">
<!--
h1 {font-family:宋体;font-size:12pt;color=blue}
-->
</style>
</head>
<body>
<h1> 在这里是行间H1标记</h1>
</body>
第二种是行间定义,例如:
<body>
<h1 style="font-family:宋体;font-size:12pt;color=blue">这是行间定义的H1标记</h1>
</body>
第三中是调用式,例如:
<head>
<LINK REL="stylesheet" href="sample.css">
</head>
还有另外一种调用式:
<head>
<style type="text/css">
<!--
@import url(http://www.yourname.com/style.css);
-->
</style>
</head>

评论加载中…