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

CSS 定义的四种方法

2012-12-24 09:07 351 查看
CSS定义总共有四种方法:

<1>行内式(内联式):<h1 style="color:white;background-color:blue">This is a of Text.</h1>

<2>内嵌式(内部样式表):<style type="text/css">

h1{

color:white;

background-color:blue

}

</style>

<3>导入式(外部样式表):<style type="text/css">

@import"mystyle.css";

</style>

<4>链接式(外部样式表):<link href="mystyle.css" rel="stylesheet" type="text/css" />
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  CSS