网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的考试资料:

 

标题 用table表格来调整表单控件的格式让它好看一些
内容
    因为想自己写一个web,所以也在学习html语言的一些东西,让我回想起了大学时代曾对网页设计产生过兴趣,无奈那时候还没有自己的电脑,还常去网吧买个软盘下载一些图片,然后用fontpage做一些网页.后来买了电脑,则一直被传奇迷的一塌糊涂,也把网页设计给抛到脑后了....
    由于是在ubuntu下面工作,而linux底下的所见即所得的网页设计真是少的可怜.最后选择了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>
    这个输入框没有对齐啊,我心里那个难过啊,这时候边上的同事说可以用表格来格式化一下,请教后代码如下:
    代码如下:
    <!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>
随便看

 

在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/18 15:44:42