<style type="text/css"什么时候要写上去?
老师资料上面为什么这两段代码一个有 type="text/css" 另一个没有?<style type="text/css">
h1 {color: red}
p {color: blue}
a {
color: yellow;
background: black;
}
</style>
<style>
body {
background-image: url("../img/bc.png")
}
h1 {
text-align: center;
color: white;
}
h2 {
margin-left: 60%;
color: white;
}
p {
text-indent: 32px;
font-size: 16px;
line-height: 32px;
color: white;
}
img {
position: absolute;
left: 50%;
margin-left: -181px;
}
</style> 1、type标签主要是XML、HTML4时代的产物,那个时候必须指定类型。
2、HTML5时代可以不写(建议写,忘了也没关系{:10_336:}),因为浏览器内核帮你做了这件事情。 可写可不写
页:
[1]