gpt4 book ai didi

css - 用 CSS 格式化表格?

转载 作者:行者123 更新时间:2023-11-28 12:38:04 27 4
gpt4 key购买 nike

我只想使用 CSS(无标签)创建一个表格。我的目标是创建一个双行表,第一行有两个单元格,第二行有一个单元格。单元格内容垂直堆叠。感谢您的帮助。

article {
display: table;
width: 440px;
margin-left: 20px;
}

section {
display: table-row;
}

article.section img {
display: table-cell;
width: 130px;
}

article.section p {
display: table-cell;
width: 130px;
}
 <article>   <!-- table -->
<section> <!-- table row 1 -->
<img src="images/People/napoleon.jpg" /> <!-- row 1, cell 1 -->
<img src="images/Symbols/fleurBlue.jpg" /> <!-- row 1, cell 2 -->
</section>

<section> <!-- row 2 -->
<p> This is Napoleon Bonaparte as
Emperor of France wearing his military
uniform.
</p>
</section>
</article>

Refer this jsfiddle

最佳答案

选择器不正确。

article.section imgarticle.section p 应该是article section imgarticle section p

关于css - 用 CSS 格式化表格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27220561/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com