SEO俱乐部,打造SEO知识第一平台!
掌握搜索引擎的最佳化,打造适合自己运营的网站。- 2007-9-29 21:22:00 点击率:
-
一行一列
一行一列1:
采用float浮在左上角,固定宽度。#content {
float: left;
padding: 10px;
margin: 20px;
background: #FFF;
border: 5px solid #666;
width: 400px; /* ie5win fudge begins */
voice-family: "\"}\"";
voice-family:inherit;
width: 370px;
}
html>body #content {
width: 370px; /* ie5win fudge ends */
}一行一列2:
固定在左上角,固定宽度,采用的是绝对(absolute)定位。
#content {
position: absolute;
top: 0px;
left: 0px;
padding: 10px;
margin: 20px;
background: #FFF;
border: 5px solid #666;
width: 400px; /* ie5win fudge begins */
voice-family: "\"}\"";
voice-family:inherit;
width: 370px;
}
html>body #content {
width: 370px; /* ie5win fudge ends */
}一行一列3:
固定在左上角,不固定宽度,采用百分比(%)定义宽度来自适应页面。#content {
position: absolute;
top: 0px;
left: 0px;
margin: 20px;
background: #FFF;
border: 5px solid #666;
width: 74%; /* ie5win fudge begins */
padding: 10px 10% 10px 15%;
voice-family: "\"}\"";
voice-family:inherit;
width: 55%;
padding: 10px 9% 10px 11%;
}
html>body #content {
width: 55%;
padding: 10px 9% 10px 11%;
} /* ie5win fudge ends */一行一列4(推荐):
固定宽度,采用在body样式中定义居中属性(text-align: center;)实现适应页面自动居中。body {
>>如有疑问,欢迎进入SEO俱乐部论坛参与讨论。
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
font-family: verdana, arial, helvetica, sans-serif;
color: #c060;
background-color: #CCC;
text-align: center;
/* part 1 of 2 centering hack */
}
#content {
width: 400px;
padding: 10px;
margin-top: 20px;
margin-bottom: 20px;
margin-right: auto;
margin-left: auto;
/* opera does not like 'margin:20px auto' */
background: #FFF;
border: 5px solid #666;
text-align:left;
/* part 2 of 2 centering hack */
width: 400px; /* ie5win fudge begins */
voice-family: "\"}\"";
voice-family:inherit;
width: 370px;
}
html>body #content {
width: 370px; /* ie5win fudge ends */
} - 上一篇:CSS+DIV标准布局(一行两列)
下一篇:如何缩写CSS常用语法
CSS+DIV标准布局(一行一列)
- 相关文章
如何缩写CSS常用语法[09-28]
div容器100%显示[09-24]
css hack(css兼容详解)[09-24]
css 兼容标签对校表[09-14]
Web标准的好处[09-12]
什么是web标准[09-12]
- 推荐文章
- SEO常见问题解答
- 本月排行
- 赞助商链接