<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時,一切都沒問題。爲什麼內容在細胞中的位置取決於其他細胞
請問您能提供一個小提琴的例子嗎? – alexbusu 2013-02-19 15:08:53
下面是一個開始:http://jsfiddle.net/SF9LM/1 – isherwood 2013-02-19 15:10:25
當您使用'table:cell'時,您的部分將被視爲這樣,因此在您的樣式中添加'vertical-align:top' – Pete 2013-02-19 15:12:19