Jump to content
  • 0

жесть в ИЕ


Gatto
 Share

Question

в фаерфоксе работает, а в ИЕ - это просто жесть...

Где грабли, кто подскажет?

div.general {
margin: 0 auto;
width: 50em;
height: 100em;
border-style: dashed;
}
div.head {
width: 50em;
height: 5em;
border-style: dashed;
}
div.side {
position: relative;
width: 15em;
height: 94.5em;
border-style: dashed;
float: left;
}
div.mine {
position: relative;
left: 15em;
width: 35em;
height: 94.5em;
border-style: dashed;
border-color: #933;
}
div.bottom {
position: relative;
width: 50em;
height: 3em;
border-style: dashed;
}

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

проблема очень глубока. соль в том что ИЕ неправильно работает со флоатом (отлично от других значимых браузеров)

Чтобы не мучиться я бы просто сделал и правй элемент плавающим.

div.general {
margin: 0 auto;
width: 100px;
background: red;
}
div.head {
width: 100px;
height: 10px;
background: blue;
}
div.side {
position: relative;
width: 30px;
height: 200px;
background: black;
float: left;
}
div.mine {
position: relative;
width: 70px;
height: 200px;
float: right;
background: green;
}
div.bottom {
position: relative;
width: 100px;
height: 10px;
background: brown;
}

Link to comment
Share on other sites

  • 0
Я не ошибусь, если скажу что в коде?

Что код делать то должен?

<html>
<div class="general">
<div class="head"></div>
<div class="side"></div>
<div class="bottom"></div>
</div>

Должна быть страница шаблонная с выравниванием по центру главного блока, ну и внутри блоки должны распологаться логично, чтобы в них инфу залить...

Link to comment
Share on other sites

  • 0

зачем ты всем колонкам постваил позицию relative?

лучше создать лишний ДИВ и засунуть туда все твои колонки и указать им плавать относительно того же ДИВа.

и ИЕ, если правильно написать код, все отлично понимает

ЗЫ

Рекомендую почитать книгу Енди Бадда *Мастерская CSS*

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 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