abstrait:<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title>微博輸入</title> <style type="text/css"&g
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>微博輸入</title>
<style type="text/css">
body{font-size:12px;}
.box{width:600px;height:160px;border:8px solid pink;margin:5px auto;padding:10px;}
img{float:left;}
.box1{float:left;margin-left:255px;width:150px;height:24px;text-align:right;font-size:14px;color:#888;}
.box1 span{font-size:16px;font-weight:bold;}
#text{width:600px;height:100px;border:1px solid #DCDCDC;margin-top:5px;}
.box #sp1,#sp2,#sp3,#sp4,#sp5,#sp6{float:left;width:30px;height:32px;line-height:32px;padding-left:26px;}
#sp1{background:url(images/an5.png) no-repeat left center;}
#sp2{background:url(images/an4.png) no-repeat left center;}
#sp3{background:url(images/an3.png) no-repeat left center;}
#sp4{background:url(images/an2.png) no-repeat left center;}
#sp5{background:url(images/an1.png) no-repeat left center;width:40px;}
#sp6{margin-left:155px;margin-right:15px;color:#888;}
#bt{float:left;width:80px;height:30px;border:none;background:#ffc09f;color:#fff;border-radius:5px;}
</style>
</head>
<body>
<div class="box">
<img src="images/12.png">
<div class="box1">還可以輸入<span id="number">140</span>字</div>
<textarea id="text"></textarea>
<span id="sp1">表情</span>
<span id="sp2">圖片</span>
<span id="sp3">視頻</span>
<span id="sp4">話題</span>
<span id="sp5">長(zhǎng)微博</span>
<span id="sp6">公開</span>
<input type="button" id="bt" value="發(fā)布">
</div>
</body>
</html>
總結(jié):
1、看到一項(xiàng)任務(wù),首先要有總體的布局觀,對(duì)各項(xiàng)內(nèi)容的陳列,用簡(jiǎn)潔、合適的屬性;需要著重研究如:DIV、SPAN、UL之間的不同特性
2、在建立初始布局規(guī)劃的同時(shí),要有一個(gè)大致的布局方向,這時(shí)要考慮到DIV、SPAN、UL等之間所有的不同特性和屬性值,做完這一步思考就可以動(dòng)手寫代碼了。
3、寫代碼時(shí),先建立HTML結(jié)構(gòu),完成布局的骨架;必要時(shí)可以先畫一張圖作為參考。
4、然后通過控制樣式,給予它們預(yù)想的顏色、線條、位置等屬性,完成布局;
5、肯定有很多在預(yù)期之外的樣式效果會(huì)不時(shí)冒出來,在納尼、我特聲中,可以逐漸對(duì)各項(xiàng)平時(shí)學(xué)了又忘的屬性值留下深刻的印象。