Два деления в одной строке

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 в одной строке. Итак, как это выглядит: Изображение 174551

Вот как это должно выглядеть: Изображение 174551

Теги:

1 ответ

3
Лучший ответ

Добавьте основную информацию:

vertical-align: top;

к вашему классу ".bluebox"

Ещё вопросы

Сообщество Overcoder
Наверх
Меню