你知道在我們寫一個(gè)布局樣式的時(shí)候,如何實(shí)現(xiàn)一個(gè)三列布局,就是左右側(cè)固定,中間自適應(yīng)寬度的樣式么?今天匯仁智杰小編就在這里給大家說幾種方法。希望對象需要的你有所幫助。
html代碼(第一二種方法):
<div class="left">左側(cè)固定區(qū)</div>
<div class="right">右側(cè)固定區(qū)</div>
<div class="mid">中間自適應(yīng)區(qū)</div>
css代碼:
第一種方法(定位):
.left {
position: absolute;
top: 0;
left: 0;
width: 100px;
height: 200px;
background-color: red;
}
.mid {
margin-left: 100px;
margin-right: 200px;
height: 200px;
background-color: blue;
}
.right {
position: absolute;
top: 0;
right: 0;
width: 200px;
height: 200px;
background-color: yellow;
}
第二種方法(浮動(dòng)):
.left {
float: left;
width: 100px;
height: 200px;
background-color: red;
}
.mid {
height: 200px;
background-color: blue;
}
.right {
float: right;
width: 200px;
height: 200px;
background-color: yellow;
}
第三種方法(負(fù)邊距):
html代碼:
<div class="center fl">
<div class="mid">
中間自適應(yīng)區(qū)中間自適應(yīng)區(qū)中間自適應(yīng)區(qū)中間自適應(yīng)區(qū)中間自適應(yīng)區(qū)中間自適應(yīng)區(qū)中間自適應(yīng)區(qū)中間自適應(yīng)區(qū)中間自適應(yīng)區(qū)中間自適應(yīng)區(qū)中間自適應(yīng)區(qū)中間自適應(yīng)區(qū)
</div>
</div>
<div class="left fl">左邊固定區(qū)</div>
<div class="right fl">右邊固定區(qū)</div>
css代碼:
.fl { float: left; }
.center {
width: 100%;
height: 200px;
background: yellow;
}
.center .mid{
margin-right: 100px;
padding: 0 110px;
}
.left{
margin-left: -100%;
width: 100px;
height: 200px;
background: green;
}
.right{
margin-left: -200px;
width: 200px;
height: 200px;
background: blue;
}
以上就是匯仁智杰所講的幾種方法,希望對您有所幫助,如果說您有什么不同的見解,請隨時(shí)聯(lián)系小編,我們一起探討學(xué)習(xí)。
免費(fèi)學(xué)習(xí)課堂
- 免費(fèi)推廣知識
- 競價(jià)推廣知識
- 新媒體營銷知識
- 網(wǎng)站運(yùn)營知識
- 網(wǎng)站設(shè)計(jì)知識
- 網(wǎng)站建設(shè)知識
- Web前端知識
- 軟文營銷知識
- 網(wǎng)站策劃知識
- 整合營銷
推薦文章
實(shí)現(xiàn)一個(gè)左右側(cè)固定,中間自適應(yīng)寬度的三列布局
來源:北京匯仁智杰科技有限公司 時(shí)間:2016-04-15 點(diǎn)擊: 次
推薦文章
- 織夢dedecms漏洞修復(fù)大全含任意文件2016-09-05
- 整頓微信公眾號過度營銷 對嚴(yán)重違2016-01-26
- SEO優(yōu)化過程要避免什么?2016-01-26
- 網(wǎng)站空間被掛馬的原因原因及解決2016-01-26
- 2016企業(yè)該如何運(yùn)用互聯(lián)網(wǎng)進(jìn)行營銷2016-01-26
- WEB前端項(xiàng)目開發(fā)中需注意的細(xì)節(jié)2016-01-26
- 低價(jià)網(wǎng)站建設(shè)的危害有哪些?2016-01-15
- 如何詳細(xì)的分析你網(wǎng)站的競爭對手2015-06-10
- 網(wǎng)站設(shè)計(jì)中四個(gè)常犯的錯(cuò)誤2015-01-22
- 如何搭配網(wǎng)站設(shè)計(jì)中的色彩?2015-01-22