html - 如何在不使用表格的情况下并排显示元素?

标签 html css

例如你想在文本旁边显示一张图片,通常我会这样做:

<table>
    <tr>
        <td><img ...></td>
        <td>text</td>
    </tr>
</table>

有更好的选择吗?

最佳答案

您应该将它们漂浮已清除的容器中。

例子:

https://jsfiddle.net/W74Z8/504/

enter image description here

一个干净的实现是“clearfix hack”。这是 Nicolas Gallagher的版本:

/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
    *zoom: 1;
}
​

关于html - 如何在不使用表格的情况下并排显示元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11438910/

相关文章:

html - 如何在导航栏中将 <img> 放置在两个 <ul> 之间?

HTML 电子邮件签名 CSS 在某些电子邮件客户端中不起作用

javascript - 在 jQuery 中单击 div 内的图像后翻转效果

css - 类 CSS 定义内的元素未使用 ITextSharp (5.5.1) XHTML 应用于 PDF

jquery - 正确的 CSS 语法通过 jquery 获取 json 编码的数据属性

html - 具有固定页眉的真正粘性页脚?

HTML4 strict : border ="0" is deprecated, 怎么替换

javascript - 在 ('mouseenter' )(this).显示特定 div 中的文本

javascript - 如何在上传图片后更改 DIV 的背景?

html - 在绝对定位中调整多个 div 的大小