html

1、不加doctype导致低版本IE解析效果不一样
2、id不能为数字,如<div >3、文件编码与charset声明不一致
html
 

<style>
#container{
width:800px;
background:gray;
}
#header{
height:100px;
background:red;
}
#main{
height:100px;
background:green;
}
#right{
width:400px;
height:100px;
background:purple;
float:left;
}
#left{
width:400px;
height::100px;
background:blue;
float:right;
}
#footer{
height:100px;
background:pink;
}
</style
</head>
<body>
<div ></div>
</div>

Related Posts

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注