2017年9月12日
Posted 氏张
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2017年9月12日相关的知识,希望对你有一定的参考价值。
框架
必须去掉<body></body>
<frameset rows="">上下分
<frameset cols+"">左右分
<frameborder="no">去掉下划线
CSS样式表
/*id选择器*/
#div1{
width: 100px;
height: 100px;
background-color: blue;
}
/*class选择器*/
.div2{
width: 100px;
height: 100px;
background-color: green;
}
/*标签选择器*/
div{
border: 5px solid #000;
}
/*全局选择器*/
*{
margin: 0px;
padding: 0px;
}
/*复合选择器*/
/*子代选择器*/
.div3 span{
color: red;
}
/*并列选择器*/
.div3,.div4{
width: 100px;
}
<必须用style></style>括起来
最先级别是写在body里面的<div></div>
<head>
写在最下面的代码是优先级
</head>
以上是关于2017年9月12日的主要内容,如果未能解决你的问题,请参考以下文章