<div style="background-color:redcolor:green"></div>
方式二:head中加style标签(不好,需要修改html文件)
<style type="text/css">
div{
background-color:red
color:green
}
</style>
方式三:head中加载css文件(只需修改css文件)注意:这种方法某些浏览器不起作用,不要用了
<style type="text/css">
@import url(div.css)
</style>
css文件中
div{
background-color:red
color:green
}
方式四:head中使用头标签 link
<link rel="stylesheet" type="text/css" href="div.css">
1.第一种方法是行内样式,就是直接把CSS代码添加到html的标签中,作为标签的一种属性存在。
2.
第二种方式是内嵌样式,就是将CSS代码添加到<head></head>之间,并用<style></sty...
3.
第三种方法是链接样式,就是将“页面内容”和“样式代码”分类成两个文件或多个文件,实现html代码和css代码的完全分离。
在html网页中引入引入css主要有以下四种方式:\x0d\x0a(1)行内式\x0d\x0a网页中css的导入方式\x0d\x0a\x0d\x0a(2)嵌入式\x0d\x0a\x0d\x0aP{ color:red }\x0d\x0a\x0d\x0a 嵌入式一般写在head中,对于单个页面来说,这种方式很方便。\x0d\x0a\x0d\x0a(3)导入式\x0d\x0a \x0d\x0a \x0d\x0a @import "jisuan.css" \x0d\x0a\x0d\x0a\x0d\x0a(4)链接式\x0d\x0a\x0d\x0a \x0d\x0a导入式和链接式差不多,都是从外部引入css文件。但是链接式对于客户端用户浏览网站时,效果会好些。