新闻详情

内嵌样式表

2355 2009/2/28

内嵌样式表就是将CSS写在<head>和</head>之间,并且用<style>和</style>标记进行声明。

例如:

<html>

<head>

<title>页面标题</title>

<style type="text/css">

<!--

p{
 color:#FF00FF;
 text-decoration:underline;
 font-weight:bold;
 font-size:20px;
}

-->

   </head>
<body>
 <h2>CSS标题1</h2>
 <p>紫色、粗体、下划线、25px的效果1</p>
 <h2>CSS标题2</h2>
 <p>紫色、粗体、下划线、25px的效果2</p>
 <h3>CSS标题3</h3>
 <p>紫色、粗体、下划线、25px的效果3</p>
</body>
</html>

相关资讯

18973218026
返回顶部