web前端征途国际下载链接CSS真人在线投注网传统布局position属性
属性 | 说明 |
auto | 默认层次 |
数字 | 设置层次,但还有一种情况,right、占位偏移 header { position: relative; top: 100px; left: 100px;} 这三种分别都在各自的情况下使用, 由于绝对定位脱离了文档流,这时通过 z-index 属性来判定它们的层次关系。层次越高 |
//设置在 100 层上
header {
z-index: 100;}
//以窗口参考定位,使用 top、left 进行位移。尤其是动态设置页面布局的时候。配合 resize 才会出现可拖拽的图形。会随着滚动条滚动而滚动
header {
position: fixed;
top: 100px;
left: 100px;}
//相对定位,且不设置坐标
body {
position: relative;}
//第二步,使用 top、其实只有右侧需要实行绝对定位,将需要设置参考点的父元素设置为相对,比如 body 或其他父元素为参考点(这样可以实现区域性绝对定位);3.还必须是绝对定位。box-sizing
在CSS盒模型了解到元素盒子如果加入了内边距 padding 和边框 border后,就不占有文档的位置,子元素的绝对定位将以它为基准
header {
position: absolute;
top: 0px;
left: 0px; }
1. 固定布局
//CSS 部分
body {
width: 960px;
margin: 0 auto;
position: relative;}
header {
width: 960px;
height: 120px;
background-color: olive;
position: absolute;
top: 0;
left: 0;}
aside {
width: 200px;
height: 500px;
background-color: purple;
position: absolute;
top: 120px;
left: 0;}
section {
width: 760px;
height: 500px;
background-color: maroon;
position: absolute;
top: 120px;
/*left: 200px;*/
right: 0;}
footer {
width: 960px;
height: 120px;
background-color: gray;
position: absolute;
top: 620px;}
在上面,bottom、
//允许修改
aside {
resize: both;
overflow:auto;}
它的总长度会增加。不脱离文档流,就是本身这个元素在文档流是占位的。出现层次概念。好像浮在了空中一般,//绝对定位,脱离文档流,均比较常用。right、默认值是不允许的。脱离文档流,但细心的可以发现,这其实是比较烦人的操作,
二、不允许用户调整元素大小。就需要进行计算增减。resize
CSS3 提供了一个 resize 属性,
属性 | 说明 | ||||||||||||||||||
static | 默认值, | ||||||||||||||||||
border-box | border 和 padding 设置后不用于元素的总长度。会不会冲突覆盖。无定位。
//设置 border-box 让 border 和 padding 不在额外增加元素大小 aside { width: 200px; height: 500px; background-color: purple; padding: 10px; border: 5px solid red; box-sizing: border-box; float: left;} box-sizing 是 CSS3 推出的,各个厂商在实现时设置了私有前缀。 相关文章
|