Jump to content
  • 0

Резиновый div, ширина которого зависит от ширины контента в нем расположенного


Качан Капусты
 Share

Question

Помогите, пожалуйста, сверстать такой макет:

layoutus5.png

Условия такие:

1. Синий слой находится по центру экрана.

2. В оранжевом диве находится контент, ширина которого заранее неизвестна. Ширина оранжевого дива равна ширине контента в нем расположенного. Ширина синего и зеленого дива равна ширине оранжевого дива.

3. Оранжевый и зеленый дивы прибиты к левому краю синего дива.

На таблицах это сверстать очень просто, код будет выглядеть примерно так:

<center>
<table>
<tr><td height="200px">Это зеленый блок</td></tr>
<tr><td height="100px">Это оранжевый блок, его ширина и ширина всей таблицы будет зависеть от ширины контента, расположенного в этом блоке</td></tr>
</table>
</center>

А как нужный кроссбраузерный результат получить с помощью верстки на дивах?

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

код HTML

<div id="content">

<div id="header"><p>Text</p></div>

<div id="main"><p>Text</p></div>

</div>

код css

body {

margin: 0;

padding: 0;

}

#content {

margin: 0 5%;

border: 1px solid blue;

padding: 5px;

}

#header {

border: 1px solid green;

margin-bottom: 2px;

}

#header p {

text-align: justify;

padding: 5px;

font-size: 90%;

margin: 0;

}

#main {

border: 1px solid orange;

margin-bottom: 2px;

}

#main p {

text-align: justify;

padding: 5px;

font-size: 90%;

margin: 0;

}

Писал наскоряк, проверишь...

Edited by Bondarov
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy