Jump to content
  • 0

Проблема отображения содержимого слоя в IE7 и ниже


spatlet
 Share

Question

Всем пирвет. Нужна помощь.

Вот htm:

<div id="top_position">

<div id="top">Первый слой</div>

<div id="search">Второй слой</div>

</div>

Вот css:

div#top_position {

overflow:hidden;

width:990px;

height:70px;

text-align:left;

}

div#top {

float:left;

width:700px;

margin-top:15px;

padding-left:15px;

}

div#search {

width:290px;

margin-left:700px;

margin-top:25px;

padding-left:75px;

}

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

в стилях для ИЕ6-7

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head><meta content="text/html; charset=Windows-1251" http-equiv="content-type">
<title>цвц</title>
<style type="text/css">


div#top_position {
overflow:hidden;
width:990px;
height:70px;
text-align:left;

border: 1px solid #000;
}

div#top {
float:left;
width:700px;
margin-top:25px;
padding-left:15px;
}

div#search {
width:290px;
margin-left:700px;
margin-top:-20px;
padding-left:75px;
}

</style>


</head>

<body>
<div id="top_position">
<div id="top">Первый слой</div>
<div id="search">Второй слой</div>
</div>

</body>
</html>

Edited by psywalker
Link to comment
Share on other sites

  • 0

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

Edited by spatlet
Link to comment
Share on other sites

  • 0
Не помогло и рамка почему-то появилась только слево и снизу. Даже если загрузить ваш код в визуальный редактор, то водно что второй слой не отображается.

Хотя нет. НЕ сразу разглядел разниу междк моим и вашим кодом. При том коде который предложили вы содержиоме второго слоя начало отображатся в IE7, но вот IE6 попрежнему не отображает.

Link to comment
Share on other sites

  • 0

Не задавай ширину у правого блока, тогда вот так будет работать везде:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head><meta content="text/html; charset=Windows-1251" http-equiv="content-type">
<title>цвц</title>
<style type="text/css">


div#top_position {
overflow:hidden;
width:990px;
height:70px;
text-align:left;


}

div#top {
float:left;
width:700px;

padding-left:15px;
}

div#search {

margin-left:700px;

padding-left:75px;
}

</style>


</head>

<body>
<div id="top_position">


<div id="top">Первый слой</div>
<div id="search">Второй слой</div>
</div>

</body>
</html>

Link to comment
Share on other sites

  • 0

psywalker - вы просто гуру ))) Большое спасибо. Подскажите еще пожалуйста один момент. У меня слой "top_position" имеет высоту 70px и сейчас содержимое слоев "top" и "search" прижато к верху во всех браузерах. Как мне расположить содержимое слоев "top" и "search" на одном уровне и чтоб сверху был отсуп например в 15px.

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