- 1 超大图片居中
- box{ height:400px;width:100%; background:url(bg0808.jpg) no-repeatcenter0;}
- box{ width:1920px; height: 400px; background:url(bg0808.jpg) no-repeat; position: relative; left: 50%; margin-left: -960px;}
- left{ width:200px; height:300px; background:red; float:left;}
#center{ height:300px; background:blue; margin-left: 200px; margin-right: 300px;}
#right{ width:300px; height:300px; background:green; float:right;}
1 超大图片居中
- width宽度100% + 背景居中
box{ height:400px;width:100%; background:url(bg0808.jpg) no-repeatcenter0;}
- 宽度固定,定位相对拉取
box{ width:1920px; height: 400px; background:url(bg0808.jpg) no-repeat; position: relative; left: 50%; margin-left: -960px;}
2 左右固定,中间自适应
left{ width:200px; height:300px; background:red; float:left;}
#center{ height:300px; background:blue; margin-left: 200px; margin-right: 300px;}
#right{ width:300px; height:300px; background:green; float:right;}
3 版心:
.container{ width:1000px; margin: 0auto;}
4 通栏:
.container-fluid{ width:100%; }