Jump to content
  • 0

Ещё одна проблемка


lazybaby
 Share

Question

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html>

<head>

<style>

#div1 {

position: relative;

}

#div2 {

position: absolute;

background: red;

left: 40%;

width: 5%;

top: 20%;

height: 10%;

}

</style>

</head>

<body>

<div id="div1"><img src="http://www.unity.freenet.kz/map/proekcia3.jpg" width="100%">

<div id="div2"></div>

</div>

<script>

alert (document.getElementById("div2").parentNode.offsetHeight + " : " + document.getElementById("div2").offsetHeight);

</script>

</body>

</html>

Во всех браузерах работает, кроме IE6. В нём совершенно непонятно как устанавливается высота div2. Точно не 10% (скрипт ниже это демонстрирует), и к тому же не масштабируется при изменении размеров окна.

P.S. Нашел решение. Как то так:

body {

height:100%;

}

<!--[if IE 6]>

<style>

* body #div1 {

height:100%;

}

</style>

<![endif]-->

Условие необходимо, т.к. иначе ломается во всех остальных браузерах.

Edited by lazybaby
Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0
от чего по вашему должны считаться 10% ?

Кстати,

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html>

неправильный доктайп. Скорей всего будет парситься в quirk mode, и body #div1 можно без звездочки.

Link to comment
Share on other sites

  • 0
чем он неправильный?

Должно быть

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

верней, xml:lang="en" lang="en" - опционально, xmlns="http://www.w3.org/1999/xhtml" - обязательно.

Edited by Justnewone
Link to comment
Share on other sites

  • 0
сам доктайп правельный) а вот у html не прописать xmlns, это не доктайп)

Ну типа того :) , в контексте XHTML, где важна не только 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