码迷,mamicode.com
首页 > 其他好文 > 详细

用table表格来调整控件的格式

时间:2014-07-22 22:38:53      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   使用   2014   re   

因为想自己写一个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>

bubuko.com,布布扣


这个输入框没有对齐啊,我心里那个难过啊,这时候边上的同事说可以用表格来格式化一下,请教后代码如下:

<!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>

bubuko.com,布布扣

啊哈,新技能get,感谢童竣同学大力支持~~

还教了我如何使用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>


用table表格来调整控件的格式,布布扣,bubuko.com

用table表格来调整控件的格式

标签:style   blog   http   使用   2014   re   

原文地址:http://blog.csdn.net/smallfish1983/article/details/38032585

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!