#container {
width: 960px;
height: 960px;
background-color: #ccc;
}
.box {
width: 300px;
height: 300px;
background-color: blue;
display: table-caption;
border: 0;
}
<div id='container'>
<span class='box'>Content</span>
<span class='box'>Content</span>
<span class='box'>Content</span>
<span class='box'>Content</span>
</div>
現在,當我改變table-caption
到table-cell
它呈現水平。下面是它的演示。
任何理由的不同呈現的?
..什麼? 'table-caption'呈現它像一個'
,應該只有一個表格標題每個容器...,只是使用顯示:塊在這裏:)我沒有看到的重點,除非更多的代碼丟失 –
@哈里我知道:)雙重引號是最常見的HTML,但也可以使用單一樣式。這是寫在http://www.w3schools.com/html/html_attributes.asp這個頁面。所以我將單引號改爲雙引號。 :)順便說一下,重點是沒有區別。 :) –