创建灵活的宽度和布局布局高度

发布于 2024-11-06 20:58:19 字数 787 浏览 0 评论 0原文

希望你们能帮助我。 我面临一些CSS布局问题。 我希望布局具有与使用 div 的表格相同的自动扩展宽度和高度的效果。 我想要的效果与下面的例子相同。宽度和高度的布局是动态的,并且里面的内容都在同一水平线上。

<table>
    <tr>
        <th>ipsum dolor sit amet</th>
        <td>
            <ul>
                <li>apple</li>
                <li>orange</li>
                <li>mango</li>
            </ul>
        </td>
    </tr>
    <tr>
        <th>ipsum</th>
        <td>
           <ul>
                <li>apple</li>
                <li>orange</li>
                <li>mango</li>
            </ul>
         </td>
    </tr>
</table>

只用 CSS 可以做到吗? 感谢您的帮助,如果您能给一些提示...

hopefully you guys can help me.
i facing some css layout problem.
i want the layout have same effect of auto-expand width and height as table with using div.
the effect i want is same as below example. layout with the width and height is dynamic and the content inside all at same horizontal line.

<table>
    <tr>
        <th>ipsum dolor sit amet</th>
        <td>
            <ul>
                <li>apple</li>
                <li>orange</li>
                <li>mango</li>
            </ul>
        </td>
    </tr>
    <tr>
        <th>ipsum</th>
        <td>
           <ul>
                <li>apple</li>
                <li>orange</li>
                <li>mango</li>
            </ul>
         </td>
    </tr>
</table>

is it possible to do it with only CSS?
thanks for help if you could give some hints...

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

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

发布评论

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

评论(1

情感失落者 2024-11-13 20:58:19

我建议你使用DIV而不是table,table不够灵活,当你在不同的浏览器上测试你的HTML页面时你会遇到问题。

I recommend you to use DIV instead of table, table is not enough flexible and you will face problem when you test your HTML page on different browsers.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文