0

我有一个包含一些文本的框和另一个包含视频的框。
这是jsfiddle
代码:
CSS:

.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 设置在同一行。所以它是这样的: 在此处输入图像描述

它应该是这样的: 在此处输入图像描述

4

1 回答 1

3

添加一个基本的:

vertical-align: top;

到你的班级“.bluebox”

于 2013-09-21T22:11:36.820 回答