在開始制作頁面前,我們首先要觀察圖的結(jié)構(gòu),考慮怎樣布局,布局對(duì)一個(gè)網(wǎng)站來說非常重要,他是整個(gè)體系的骨骼。
再看此圖
很經(jīng)典的三行兩列結(jié)構(gòu),分為四塊,TOP、RIGHT、LEFT、BOTTOM。如下圖
以上我們思考過整體的結(jié)構(gòu),接下來我們要考慮如何把思考出來的結(jié)構(gòu)變化成"骨骼"
如下圖(盒模型來分析)
主體制作 --> 細(xì)節(jié)制作
xhtml:
css:
@import url("http://www.07art.com/public/public.css");
.editorChoose{width:591px;height:400px;border:1px solid #aaa;background:#fff;}
/*TOP內(nèi)容*/
.editorChoose h1{height:30px;line-height:30px;border-bottom:1px solid #aaa;text-align:center;font-weight:bold;color:#000;background:#efefef;}
/*LEFT內(nèi)容*/
.edLeft{float:left;width:142px;height:317px;border-right:1px solid #aaa;overflow:auto;}
/*RIGHT內(nèi)容*/
.edRight{float:right;width:448px;height:317px;overflow:auto;}
/*BOTTOM內(nèi)容*/
.edBottom{clear:both;padding-top:15px;height:35px;border-top:1px solid #aaa;text-align:center;background:#efefef;}
骨骼出來了,接下來我們該在骨骼上添加"血"遇"肉",這樣才算完整的.
先來看一下TOP容器中的細(xì)節(jié)部分。
看上去這里很簡潔,文字居中,關(guān)閉按鈕居右并且距上8px、距右10px的距離。
考慮TOP的結(jié)構(gòu),關(guān)閉按鈕在右邊,那么我們就要給關(guān)閉按鈕一個(gè)右浮動(dòng)(float:right;)。
相對(duì)應(yīng)的css
.editorChoose h1{height:30px;line-height:30px;border-bottom:1px solid #aaa;text-align:center;font-weight:bold;color:#000;background:#efefef;}/*文字居中*/
.editorChoose h1 img{float:right;margin:8px 10px 0px 0px;}/*圖片居右*/
看一下RIGHT容器中的細(xì)節(jié)部分。
紅塊區(qū)域?yàn)橹貜?fù)區(qū)域,所以只做一塊,然后copy就可以.
相對(duì)應(yīng)的css
.edRight div{width:95px;padding:18px 0px 12px 10px;float:left;}
.edBottom{clear:both;padding-top:15px;height:35px;border-top:1px solid #aaa;text-align:center;background:#efefef;}
看一下RIGHT容器中的細(xì)節(jié)部分。
這是一個(gè)列表性質(zhì)的圖,首先就要考慮ul li。
h2 標(biāo)簽寫相冊“相冊列表”位置
ul 寫下面的列表,并用overflow:auto;來控制滾動(dòng)條,
xhtml:
css:
.edLeft h2{padding:1px 1px 0px 1px;height:26px;border-bottom:1px solid #aaa;}
.edLeft h2 span{text-align:center;height:25px;background:#BFBDBD;color:#000;text-align:center;font-weight:bold;line-height:25px;display:block;}
.edLeft{float:left;width:142px;height:317px;border-right:1px solid #aaa;}
.edLeft ul{height:290px;overflow:auto;}
.edLeft li{height:27px;line-height:27px;border-bottom:1px solid #aaa;padding-left:10px;}
.edLeft li a{color:#000;}
.edLeft li a:link,.edLeft dd a:visited{text-decoration:none;}
.edLeft li a:hover{text-decoration:underline;}
.edLeft li.background{background:#ECEBEB;}
這里我把按鈕寫成input的形式
相對(duì)應(yīng)的css
.edBottom input{width:37px;height:22px;color:#000;border:1px solid #555;background:#aaa;}
[Ctrl+A 全選 注:如需引入外部Js需刷新才能執(zhí)行]
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com