内部带有表格的字段集。如何将它们放在同一行?
我需要在部分视图形式的同一行上对齐两个
没有桌子它也能工作。和他们在一起 - 没有。
UPD:或者这可能与我试图将它们放入其中的 qTip 有关。
I need to align two <fieldset>
objects on the same line in partial view form. Whatever I do nothing helps. Trying to float them to the left, to the right, tried to minimize the width, tried display:inline
option.
Without tables it works. With them - doesn't.
UPD: Or it might be something to do with qTip within which I'm trying to place those.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它不是表格数据,那么为什么要使用表格呢?
有许多 css 字段集示例可用于适当地使用标签和输入来制作美观的字段集。 (参见http://www.pixy.cz/blogg/clanky/css-fieldsetandlabels.html 和 http://www.sitepoint.com/fancy-form-design-css-4/< /a> 两个快速示例)
如果您希望水平排列两个字段集,可以使用
display: inline-block
It's not tabular data, so why are you using a table?
There are numerous css fieldset examples to use to make nice looking fieldsets using labels and inputs appropriately. (See http://www.pixy.cz/blogg/clanky/css-fieldsetandlabels.html and http://www.sitepoint.com/fancy-form-design-css-4/ for two quick examples)
If you then want to have the two fieldsets arranged horizontally, you can use
display: inline-block
Fieldset 与表一起使用。删除表格标签中的任何样式部分。试试这个例子。这对我有用。
Fieldset works with the tables. Remove any style part in the table tag. try this example. It works for me.