因?yàn)橄胱约簩?xiě)一個(gè)web,所以也在學(xué)習(xí)html語(yǔ)言的一些東西,讓我回想起了大學(xué)時(shí)代曾對(duì)網(wǎng)頁(yè)設(shè)計(jì)產(chǎn)生過(guò)興趣,無(wú)奈那時(shí)候還沒(méi)有自己的電腦,還常去網(wǎng)吧買(mǎi)個(gè)軟盤(pán)下載一些圖片,然后用fontpage做一些網(wǎng)頁(yè).后來(lái)買(mǎi)了電腦,則一直被傳奇迷的一塌糊涂,也把網(wǎng)頁(yè)設(shè)計(jì)給拋到腦后了....
由于是在ubuntu下面工作,而linux底下的所見(jiàn)即所得的網(wǎng)頁(yè)設(shè)計(jì)真是少的可憐.最后選擇了bluefish.
想做一個(gè)添加設(shè)備的表單,結(jié)果因?yàn)榍熬Y大小不一樣,所以很難看.如圖:
代碼如下:
<!doctype html>
<meta http-equiv=content-type content=text/html; charset=utf-8 />
<html>
<body>
用戶(hù)名:<input type=text name=username><br/>
密碼:<input type=password name=password>
</body>
</html>
這個(gè)輸入框沒(méi)有對(duì)齊啊,我心里那個(gè)難過(guò)啊,這時(shí)候邊上的同事說(shuō)可以用表格來(lái)格式化一下,請(qǐng)教后代碼如下:
代碼如下:
<!doctype html>
<meta http-equiv=content-type content=text/html; charset=utf-8 />
<html>
<body>
<table>
<tr>
<td>用戶(hù)名:</td>
<td><input type=text name=username><br/></td>
</tr>
<tr>
<td>密碼:</td>
<td><input type=password name=password></td>
</tr>
</table>
</body>
</html>
啊哈,新技能get,感謝童竣同學(xué)大力支持~~
還教了我如何使用css來(lái)控制表格的格式
代碼如下:
<style type=text/css>
table{border-top:#000 solid 1px; border-left:#000 solid 1px;}
td{ border-bottom:#000 solid 1px; border-right:#000 solid 1px;}
</style>