因?yàn)橄胱约簩懸粋€(gè)web,所以也在學(xué)習(xí)html語言的一些東西,讓我回想起了大學(xué)時(shí)代曾對(duì)網(wǎng)頁設(shè)計(jì)產(chǎn)生過興趣,無奈那時(shí)候還沒有自己的電腦,還常去網(wǎng)吧買個(gè)軟盤下載一些圖片,然后用fontpage做一些網(wǎng)頁.后來買了電腦,則一直被"傳奇"迷的一塌糊涂,也把網(wǎng)頁設(shè)計(jì)給拋到腦后了....
由于是在ubuntu下面工作,而linux底下的所見即所得的網(wǎng)頁設(shè)計(jì)真是少的可憐.最后選擇了bluefish.
想做一個(gè)添加設(shè)備的表單,結(jié)果因?yàn)榍熬Y大小不一樣,所以很難看.如圖:
代碼如下:
<!DOCTYPE html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<html>
<body>
用戶名:<input type="text" name="username"><br/>
密碼:<input type="password" name="password">
</body>
</html>
這個(gè)輸入框沒有對(duì)齊啊,我心里那個(gè)難過啊,這時(shí)候邊上的同事說可以用表格來格式化一下,請(qǐng)教后代碼如下:
代碼如下:
<!DOCTYPE html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<html>
<body>
<table>
<tr>
<td>用戶名:</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來控制表格的格式
代碼如下:
<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>
更多信息請(qǐng)查看IT技術(shù)專欄