码迷,mamicode.com
首页 > Web开发 > 详细

html

时间:2016-07-13 20:11:59      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

1、不加doctype导致低版本IE解析效果不一样
2、id不能为数字,如<div id="1">是错误的
3、文件编码与charset声明不一致
技术分享
 

<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 id="container">
<div id="header"></div>
<div id="main">
<div id="right"></div>
<div id="left"></div>
</div>
<div id="footer"></div>
</div>

html

标签:

原文地址:http://www.cnblogs.com/wangruifang/p/5667470.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!