应用填充来显示:表格单元格元素
我正在尝试使用 display:table-cell 将填充应用到元素的左侧。我正在使用 Webkit 浏览器,并且这只需要在 Webkit 浏览器中运行(耶!)。
它以正确的排列方式显示,但好像根本没有填充。
有什么指点吗?当谈到 display:table
时,我有点新手,
这是我的 HTML(我已经嵌入了 css 内联,以便在这里更容易阅读):
<div class="setting-group" style="display:table">
<div class="title">Title</div>
<div class="field" style="display:table-row">
<span class="label" style="display:table-cell">Label</span>
<select class="value" style="display:table-cell; padding-left: 20px" id="id">
<option value="Opt 1">Option 1</option>
...
</select>
</div>
</div>
I'm trying to apply padding to the left side of an element with display:table-cell. I am using a Webkit browser, and this will only ever have to work in a Webkit browser (yay!).
It displays in the proper arrangement, but as if there is no padding at all.
Any pointers? I'm a bit of a newb when it comes to display:table
Here is my HTML (I've embedded css inline so that it's easier to read here):
<div class="setting-group" style="display:table">
<div class="title">Title</div>
<div class="field" style="display:table-row">
<span class="label" style="display:table-cell">Label</span>
<select class="value" style="display:table-cell; padding-left: 20px" id="id">
<option value="Opt 1">Option 1</option>
...
</select>
</div>
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将您的选择包含在一个跨度中:
Wrap your select in a span:
您还可以使用该物业...
You can also use the property...
老派风格,也许吧?
Old school style, maybe?