具有动态尺寸的 CSS div 表格线

发布于 2024-12-02 12:42:41 字数 385 浏览 1 评论 0原文

这就是我需要的。它是完全跨浏览器的(如果添加一些样式)
http://jsfiddle.net/Jkz5f/8/
但这不是一个好的解决方案,因为使用了恒定的位置

这条线带有浮动
http://jsfiddle.net/Jkz5f/5/
但如果你添加“b”字符串,它就会崩溃

有谁知道完全跨浏览器的解决方案
没有(显示:表格)并且“.b”没有恒定边距?

Here's what I need. It's fully crossbrowseer (if add some styles)
http://jsfiddle.net/Jkz5f/8/
but it's not good solution, because used constant positions

And this line with floats
http://jsfiddle.net/Jkz5f/5/
but if you add "b" string it's will be crash

Does anyone know fully-crossbrowser solution
without (display:table) and without constant margins for ".b"?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

惜醉颜 2024-12-09 12:42:41

使用元素作为 div 并不是一个好主意。只需这样做:

<div id="table">
            <div class="tr">
                <div class="a"><a href="#">a</a></div>
                <div class="b"><a href="#">bbbbbbbbbb</a></div>
<!-- and so on -->
            </div>
    </div>

当然,添加您需要的所有列。然后将所有内容浮动到左侧并添加一个clear:both 到 .a, .b ,.c div 或执行以下操作:

<div id="table">
            <div class="tr">
                <div class="a"><a href="#">a</a></div>
                <div class="b"><a href="#">bbbbbbbbbb</a></div>

<!-- and so on -->
            <div style="clear:both"></div>
            </div><!-- end of row -->
    </div>

using elements as divs isn't a good idea. Just do this:

<div id="table">
            <div class="tr">
                <div class="a"><a href="#">a</a></div>
                <div class="b"><a href="#">bbbbbbbbbb</a></div>
<!-- and so on -->
            </div>
    </div>

of couse, add all the columns you need. Then float everything to the left and add a clear:both to .a, .b ,.c divs OR do this:

<div id="table">
            <div class="tr">
                <div class="a"><a href="#">a</a></div>
                <div class="b"><a href="#">bbbbbbbbbb</a></div>

<!-- and so on -->
            <div style="clear:both"></div>
            </div><!-- end of row -->
    </div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文