Jump to content
  • 0

DIV + position:absolute; + height:100%;


klierik
 Share

Question

Приветствую.

Задача растянуть див на всю высоту области.

решение для всех нормальных браузеров:

		div.lay div.sb-bg,
div.lay div.cnt-bg {
position: absolute;;
left: 0;
top: 0;
bottom: 0;
height: 100%;
background: #1c2601;
width: 32.3em;
}

для ИЕ6:

div.lay div.sb-bg,
div.lay div.cnt-bg { height: auto; zoom: 1; }

для ИЕ7:

	 div.lay div.sb-bg,
div.lay div.cnt-bg { height: auto; height: expression(this.parentNode.clientHeight+'px') }

Подскажите что-то для ИЕ7 не используя expression, пожалуйста.

спасибо

Link to comment
Share on other sites

17 answers to this question

Recommended Posts

  • 0
Приветствую.

Задача растянуть див на всю высоту области.

решение для всех нормальных браузеров:

		div.lay div.sb-bg,
div.lay div.cnt-bg {
position: absolute;;
left: 0;
top: 0;
bottom: 0;
height: 100%;
background: #1c2601;
width: 32.3em;
}

для ИЕ6:

div.lay div.sb-bg,
div.lay div.cnt-bg { height: auto; zoom: 1; }

для ИЕ7:

	 div.lay div.sb-bg,
div.lay div.cnt-bg { height: auto; height: expression(this.parentNode.clientHeight+'px') }

Подскажите что-то для ИЕ7 не используя expression, пожалуйста.

спасибо

можно еще выложить html-код

Link to comment
Share on other sites

  • 0

конешно =)

			<!-- content case -->
<div class="cnt-case lay">

<!-- backgrounds -->
<div class="sb-bg"></div>
<div class="cnt-bg"></div>

<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>

</div>

Link to comment
Share on other sites

  • 0

спасибо, ща пошаманим))

Приветствую.

Задача растянуть див на всю высоту области.

решение для всех нормальных браузеров:

		div.lay div.sb-bg,
div.lay div.cnt-bg {
position: absolute;;
left: 0;
top: 0;
bottom: 0;
height: 100%;
background: #1c2601;
width: 32.3em;
}

для ИЕ6:

div.lay div.sb-bg,
div.lay div.cnt-bg { height: auto; zoom: 1; }

для ИЕ7:

	 div.lay div.sb-bg,
div.lay div.cnt-bg { height: auto; height: expression(this.parentNode.clientHeight+'px') }

Подскажите что-то для ИЕ7 не используя expression, пожалуйста.

спасибо

приведенный тобой код для ие6 и ие7 не работает...

Edited by Lincky
Link to comment
Share on other sites

  • 0

работает под разными браузерами и 3 троих разработчиков :)

в общем css убери bottom: 0;

а для ие дополнительно вообще ничего не надо)))

bottom надо для ИЕ6/FF/etc

высоту можно убрать, она мало чего ту решает.

суть не в том что убирать, а в том как сделать что бы заработал ИЕ7 без expression

Link to comment
Share on other sites

  • 0

ие6 не понимает задание позиционирования с двух сторон, в то время как ие7 уже понимает, но только в этом случае 100% высоты ставить не надо, а нужно ауто.

для ие6 уже пишется "выражение"

Link to comment
Share on other sites

  • 0

body, html {height: 100%; margin: 0; padding: 0;}
* html #vasea {
height: expression(document.body.clientHeight+'px'); /* Либо айди туда :) */
}
#vasea {
position: absolute; top: 0; bottom: 0; left: 0; width: 50px; height: auto; background: red;
}
<div id="vasea"></div>

П.С. с начала малость ошибся, сейчас поправил

Edited by Nekromancer
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