Jump to content
  • 0

Почему padding не работает?


Vensdale
 Share

Question

Я в сайтостроении новичок, та что сильно не пинайте. Вобщем есть HTML


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Главная</title>
<link href="style.css" type="text/css" rel="stylesheet">
</head>
<body>
<div id="wrapper">
<!-- top_header -->
<div id="t_header">
<div id="t_header_middle">
<p>Левый текст| E-mail: <a href="mailto:xxxxx@mail.ru" title="Написать нам письмо">xxxxx@mail.ru</a></p>
<a href="http://www.mailxxx.ru" target="_blank" title="Посетить сайт" class="sm">"Правый текст"</a>
</div>
<div class="clear"></div>
</div>
</div>
</body>
</html>

Есть CSS к нему


* {
margin: 0;
padding: 0;
}

body {
font: 12px Arial, sans-serif;
text-align: left;
}

a {
text-decoration: none;
color: #cccccc;
}

#wrapper {
width: 100%;
}

#t_header_middle, #b_header_middle, #nav_middle, #content_middle, #footer_middle {
width: 960px;
margin: 0 auto;
display: block;
position: relative;
}

#t_header {
background-color: #000000;
}

#t_header_middle {
color: #ffffff;
outline: 1px solid #cc0000;
padding: 10px 0; /* вот этот padding */
}

#t_header_middle p {
float: left;
}

#t_header_middle a.sm {
float: right;
}

.clear {
clear: both;
}

Пожалуйста объясните новичку почему padding: 10px 0; не дает ожидаемых внутренних отступов в контейнере #t_header_middle? Причем если не давать #t_header_middle a.sm - float: right; то padding: 10px 0; работает. Это связано с float? Если задать padding для родителя #t_header - то все работает, но мне необходимо разобраться в чем проблема в описанном выше случае.

Наглядный пример

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

padding: 10px 0; в блоке #t_header_middle не работает потому что все его потомки имеют свойство float(а float выходит из нормального потока), поэтому высота блока #t_header_middle равна 20 пикс(вертикальный паддинг 10пикс+10пикс), то есть #t_header_middle является пустым блоком.

А в блок #t_header паддинг работает, потому что его потомок #t_header_middle имеет высоту 20пикс, и уже от него отсчитывается паддинг блока #t_header.

Link to comment
Share on other sites

  • 0

Господа, большое спасибо за разъяснения. overflow:hidden для #t_header_middle помог. У меня остался один вопрос - почему здесь padding работает в таком же же блоке (#topbar) как у меня, но без прописки overflow?

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