CSS 可变宽度元素来填充空间
在表单中,我希望输入:文本填充表单标签左右对齐后的剩余空间。
标签有很多字符,所以我无法在标签上设置固定宽度。
代码示例:
<fieldset>
<legend>User Info</legend>
<p><label>First Name :</label><input type="text"...></p>
<p><label>Last Name : </label><input type="text"...></p>
<p><label>Completed Email Address :</label><input type="text"...></p>
</fieldset>
如何设置输入样式以填充文本后的剩余空间。
谢谢。
In a form, I would like the input:text to fill the remain space after the label to the form is left and right justified.
The label have number of characters so I can't set a fixed width on the label.
Code example:
<fieldset>
<legend>User Info</legend>
<p><label>First Name :</label><input type="text"...></p>
<p><label>Last Name : </label><input type="text"...></p>
<p><label>Completed Email Address :</label><input type="text"...></p>
</fieldset>
How can I style the input to fill the remaining space after the text.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不适用于较旧的浏览器。
LE:如果您不需要/想要/必须支持旧浏览器,例如 IE 6 和 7,请使用此代码。否则,请使用 JavaScript。 Ooor 使用此代码并在 IE 6 和 7 中添加一些 JavaScript。是的,我认为这是最好的方法:D
Won't work in older browsers.
LE: if you don't need/want/have to support old browsers such as IE 6 and 7, use this code. Otherwise, use JavaScript. Ooor use this code an throw in some JavaScript for IE 6 and 7. Yeah, I think that's the best way to do it :D
我首先在评论中发布了此内容,但建议将其作为答案发布。这不是 CSS 解决方案,而是基于表格的解决方案。但是,它应该适用于所有浏览器(尽管我没有对此进行测试)。标签的
td
内的span
需要解决 IE 不将white-space: nowrap
应用于表格单元格的错误。I posted this in a comment first, but was advised to post as an answer instead. This is not a CSS solution, but a table-based one. However, it should work on all browsers (though I didn't test this).
span
inside label'std
is needed to workaround IE's bug of not applyingwhite-space: nowrap
to table cells.您可以尝试在左侧(或右侧)使用浮动,并使用“块格式上下文”来确定右侧项目。
在 YUIblog 中了解有关 css 中的块格式化上下文的信息
小提琴:http://jsfiddle.net/uS3Cv/1/
You can try using floats for the left (or right) side, and "block formatting context"ifying the right side items.
Read about block formatting contexts in css at the YUIblog
Fiddle: http://jsfiddle.net/uS3Cv/1/