用table表格來調(diào)整表單控件的格式讓它好看一些

字號(hào):


    因?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.
    代碼如下:
    <!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>
    還教了我如何使用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>