如何将模板从表格转换为div

发布于 2024-11-04 11:45:13 字数 1539 浏览 0 评论 0原文

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

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

发布评论

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

评论(2

魄砕の薆 2024-11-11 11:45:13

CSS 显示属性可以在这里提供帮助吗?

<table> --> #topdiv { display:table; }
<tr> --> .row { display:table-row; }
<td> --> .cell { display:table-cell; }

它可能不是最好的方法 - 仍然是表格设计 - 但它应该可靠地工作并且全部来自 css。 (从未亲自尝试过此操作,因此不确定您还需要设置哪些其他属性。)

The CSS display property could help here?

<table> --> #topdiv { display:table; }
<tr> --> .row { display:table-row; }
<td> --> .cell { display:table-cell; }

It probably isn't the best way - is still is table design - but it should work reliably and all from css. (Never tried this personally, so not sure what other properties you'll need to set.)

妄司 2024-11-11 11:45:13

将 'table' 'tr' 'td' 替换为 div

设置 tr 的宽度与 table 的宽度相同

replace 'table' 'tr' 'td' with div

set tr's width the same with table's width

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