Jump to content
  • 0

Помогите с версткой


inflaterse
 Share

Question

Здраствуйте. Нуждаюсь в Вашей помощи. Нужно сделать что-то похоже на это:

75003793.gif

Пишу следующее:

body {
background-color: #e7e7e7;
}

.box1 {
width: 600px;
height: 500px;
margin: 0px auto;
background-color: #000;
padding-top: 10px;
}

.box2 {
width: 580px;
height: 490px;
background-color: #fff;
margin: 0 auto;
}

html:

...
<div class="box1">
<div class="box2">
</div>
</div>
...

В Firefox вроде этот код работает, но в ИЕ почемуто отказуется. И еще можно ли задать div-у box2 резиновый размер?

Edited by inflaterse
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

<div class="box1" style="padding: 10px; height: 500px; width: 500px; background: #000;">
<div class="box2" style="background: #fff; height: 100%;">
</div>
</div>

И еще можно ли задать div-у box2 резиновый размер?

Можно вообще ширину ему не задавать, так как он растянется автоматом на ширину родителя. Элемент блочный.

Link to comment
Share on other sites

  • 0

Решил задать вопрос тут, чтобы не мусорить. :) Вроде глупый вопрос, и где то видел как это делать, но никак не могу найти/вспомнить.

<html>
<head>
<style type="text/css">
#category { width: 200px; float:left; background-color: red; }
#pictures { height:1000px; margin-left:200px; background-color: green;}
</style>
<title>...</title>
</head>
<body>

<div id=category>
</div>

<div id=pictures>
</div>

</body>
</html>

Вот есть такой код. Как сделать так, чтобы высота слоя #category была такой же как и слоя #pictures? Такие пикселы я поставил просто для примера. То есть мне надо чтобы по мере наполнения контентом высота обоих блоков оставалась одинаковой. Предположим в правом блоке у меня "Война и Мир" ), а в левом одно слово: Книга. И мне нужно, чтобы они заканчивались на 1 уровне. Т.е. чтобы весь левый был почти пустой... Ну надеюсь понятно объяснил.

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