gpt4 book ai didi

html - 为什么内容在单元格中的位置取决于其他单元格

转载 作者:太空宇宙 更新时间:2023-11-04 15:16:40 25 4
gpt4 key购买 nike

<section id="main_section">
<section id="wraper">

<section id="content_left">
<article class="featured_news">
<header>
<img src="fonti.jpg" />
</header>
<h3>Lorem Ipsum! Ojczyzno moja ty jak słońce</h3>
<p>Lorem Ipsum ojczyzno moja ty jesteś jak zdrowie ile trzeba cię cenić ten tylko się dowie kto cię stracił.</p>
</article>
</section>

<section id="content_middle">
<section class="news_row">
<article><h3>NEWS 1</h3></article>
<article><h3>NEWS 2</h3></article>
<article><h3>NEWS 3</h3></article>
</section>
</section>

<section id="content_right">
<h3>TEST</h3>
</section>

</section>
</section>

#main_section {
display: table;
width: 95%;
margin-left: auto;
margin-right: auto;
background-color: white;
}

#wraper {
display: table-row;
}

#content_left, #content_middle, #content_right {
display: table-cell;
width: 33%;
}

我的问题是为什么中间和右边单元格中内容的位置取决于左边单元格中 img 的高度?当我删除 img 时一切正常。

最佳答案

如果您谈论的是垂直位置,您可以这样做:

http://jsfiddle.net/SF9LM/6/

#content_left, #content_middle, #content_right {vertical-align: top;}

原因是表格单元格默认对齐“中间”。通过添加图像,您可以拉伸(stretch)第一个单元格的高度,所有其他单元格也将效仿。

关于html - 为什么内容在单元格中的位置取决于其他单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14960702/

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