Jump to content
  • 0

Отступ снизу в IE 6.0


HatoL
 Share

Question

У меня вначале CSS-файла вставлен код для обнуления отступов:

* { margin: 0; padding: 0; }

Далее идет основной слой, который используется в самом начале страницы:

#wrapper { width: 80%; margin: 1% 10% 1% 10%; }

Третий параметр, который задает отступ снизу не работает в IE 6.0, т.е. нижняя часть страницы плотно прилегает в нижнему краю браузера. Ставил этот отступ в секцию body - работает, но мне надо сделать это в слое.

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

Вот файл style.css:

* { margin: 0; padding: 0; }
body { background-color: #fff; font-family: Tahoma; font-size: 66%; color: #000; }
#wrapper { width: 80%; margin: 1% 10% 1% 10%; }

a { color: #0000cd; text-decoration: none; }
a:hover { color: #0000cd; text-decoration: underline; }

div.line { border-top-width: 1px; border-top-color: #000; border-top-style: solid; }
div.list { margin: 0 0 0 2%; }

h3 { font-size: 115%; }

Вот содержание файла index.html, только без контента:

<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<link rel="stylesheet" type="text/css" href="style.css" />
<title>North InHouse League - Design Document</title>
</head>
<body>
<div id="wrapper">
<div class="line"></div>
</div>
</body>
</html>

Контект располагается между

<div id="wrapper">

и

</div>

Edited by HatoL
Link to comment
Share on other sites

  • 0
Понятно, просто хотелось сделать более универсальный вариант :)

А чем этот вариант не универсален? Если так уж хочется оставить margin, то можно, конечно, извратиться и применить нечто типа такой конструкции:

#wrapper {
/* margin и прочие стили */
display:inline;
float:left;
}

Но это ведь не красиво. :)

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