<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 时,一切都很好。