您的位置:首页 > Web前端 > CSS

HTML页面中嵌入CSS的方式

2008-04-06 09:52 459 查看
方式一:

abbr

{

font-size
:
12px
;

}

.text10pxwhite

{

font-size
:
10px
;

color
:
#FFFFFF
;

}//style.css

[/code]
<head>
<link
rel
=
"stylesheet"
type
=
"text/css"
href
=
"style.css"
/>

</head>


方式二:

<head>

<style
type
=
"text/css"
>

abbr
{
font-size: 12px;
}
.text10pxwhite
{
font-size: 10px;
color:#FFFFFF;
}
</style>

</head>

[/code]
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: