0
我有一個包含一些文本和另一個包含視頻的框的框。
這裏的jsfiddle
代碼:
CSS:
同一行中的兩個div
.bluebox{
background-color: #1EAECE;
}
.orangebox{
background-color: #FF8800;
}
HTML:
<div style="margin-top: -13px;">
<div class="bluebox" style="display: table-cell;width: 52.2%;">
<div class="title">Usage</div>
<ul>
<li>Moisten with warm water to activate the ingredients.</li>
<li>Apply the bar directly on face & body.</li>
<li>Massage the creamy texture into your skin.</li>
<li>Allow the emulsion time to permeate into the skin.</li>
<li>Rinse off.</li>
</ul>
<p>Suitable for Face wash, Body wash, Shaving, Sensitive areas, Intimate parts, Shower & Bath.</p>
</div>
<div style="display: table-cell;width: 0.7%;"></div>
<div class="orangebox" style="display: table-cell;width: 47.3%;">
<video width="418" src="http://brexes.com/Images%20and%20Videos/GamilaSecretVideo.mp4" controls></video>
</div>
</div>
包含文本的表面有一個巨大的空間,第一個框,我想刪除這個空間並將兩個div設置在同一行中。 因此,這裏是它的樣子:
下面是它應該是怎麼樣的:
加上' vertical-align:top;'藍色和橙色div – Krzysiek
非常好的解決方案,非常感謝你 –
發佈它的解決方案? –