使用表格制作网页表单还是应该使用div?我知道如何使用表,但是我应该如何使用div来形成表单,还是使用表格更好?
<form method="post"> <table> <tr> <td> <label for="username">Username:</label> </td> <td> <input type="text" name="username" id="username"/> </td> </tr> <tr> <td> <label for="password">Password:</label> </td> <td> <input type="password" name="password" id="password"/> </td> </tr> <tr> <td> <input type="submit" name="cancel" value="Cancel"/> </td> <td> <input type="submit" name="send" value="Send"/> </td> </tr> </table> </form>
Possible Duplicate: 07000
解决方法
不要使用表,这是非常
brittle,非
semantic的布局,使用正确的CSS布局。以下是一些介绍一些很好的布局布局方法,包括可用性考虑。第一个链接更多的是代码,第二个是关于设计和可用性的考虑:
> Learning To Love Forms (Web Directions South ’07)
> Best Practices for Form Design