valign 无法在 td 上工作?
我有一个包含表单的表格,左侧的列是字段的名称,我想将文本设置到 td 的顶部,因为目前文本位于底部。
有谁知道为什么这是一个命中和未命中的元素属性?
I have a table that contains a form, in the left col is the name of the field, and i would like to set the text to the top of the td, as at the moment the text is at the bottom.
Does any one know why this is a hit and miss element attribute?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,
你不应该真正使用表格进行布局(即使是表单),你应该使用
div
和 CSS:如何在 Internet Explorer 中的全高表格中制作全高单元格
其次,
valign
已被弃用,我们现在使用 css 属性vertical-align
看看为什么不使用 <代码>valign:http://phrogz.net/css/vertical-align/index.html
HMTL:
CSS:
Firstly,
You shouldn't really be using tables for layout (even for forms) you should use
div
s and CSS:how to make full height cell in full height table in Internet Explorer
Secondly,
valign
was deprecated, we now use the css propertyvertical-align
see why not to usevalign
:http://phrogz.net/css/vertical-align/index.html
HMTL:
<div class="className">Blah</div>
CSS: