因為想自己寫一個web,所以也在學(xué)習(xí)html語言的一些東西,讓我回想起了大學(xué)時代曾對網(wǎng)頁設(shè)計產(chǎn)生過興趣,無奈那時候還沒有自己的電腦,還常去網(wǎng)吧買個軟盤下載一些圖片,然后用fontpage做一些網(wǎng)頁.后來買了電腦,則一直被"傳奇"迷的一塌糊涂,也把網(wǎng)頁設(shè)計給拋到腦后了....
由于是在ubuntu下面工作,而linux底下的所見即所得的網(wǎng)頁設(shè)計真是少的可憐.最后選擇了bluefish.
想做一個添加設(shè)備的表單,結(jié)果因為前綴大小不一樣,所以很難看.如圖:
代碼如下:
<!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>
這個輸入框沒有對齊啊,我心里那個難過啊,這時候邊上的同事說可以用表格來格式化一下,請教后代碼如下:
代碼如下:
<!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>
更多信息請查看IT技術(shù)專欄