Jump to content
  • 0

Отступы и паддинги в <a href>


TonKhaO
 Share

Question

Народ всем привет :) , столкнулся при очередной верстке сайта вот с такой проблемой, представляю вашему внимаю 2 скрина

Проблема возникает в ИЕ, а именно взгляните на синюю выделенную область (такое впечатление что у ссылок стоит какой то margin-top: ...px), вобчем по идее ее быть не должно, так у ссылок отсутствуют отступы по умолчанию, тем боле что у меня в css * {margin: 0px; padding: 0px;} в лисе и в опере такой проблемы нет, есть у кого нить идеи??? :)

ie.jpglisa.jpg

CSS:

* {margin: 0px; padding: 0px;}


html, body {
height: 100%;
}


body {background: #ffffff;}

a {border: 1px solid green;}

a:link {color: #b4002d; font: 12px arial;}
a:visited {color: #b4002d; font: 12px arial;}
a:hover {color: #b4002d; font: 12px arial;}
a:active {color: #b4002d; font: 12px arial;}


a.top_header_links:link {color: #dc1528; font: 11px tahoma;}
a.top_header_links:visited {color: #dc1528; font: 11px tahoma;}
a.top_header_links:hover {color: #dc1528; font: 11px tahoma;}
a.top_header_links:active {color: #dc1528; font: 11px tahoma;}



#nonFooter {
position: relative;
min-height: 100%;
border: 1px solid red;
}

* html #nonFooter {
height: 100%;
}


#header {
border: 1px solid black;
height: 300px;
}


#top_header_links_block {
border: 1px solid orange;
}


#top_header_links_left {
width: 180px;
float: left;
border: 1px solid black;
}


#top_header_links_right {
width: 400px;
float: right;
border: 1px solid black;
}


#content {
padding-bottom: 70px;
border: 1px solid green;
}

#leftcol {
border: 2px solid red;
width: 240px;
float: left;
}

#rightcol {
border: 2px solid red;
width: 240px;
float: right;
}

#centercol {
border: 2px solid green;
padding: 0px 240px 0 240px;
}

#footer {
position: relative;
margin-top: -61px;
height: 61px;
border: 1px solid blue;
}

.clear {clear: both;}

HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<title>1c</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>


<body>


<div id="nonFooter">

<div id="header">

<div id="top_header_links_block">

<div id="top_header_links_left">

<a class="top_header_links" href="#">Домой</a>

</div>

<div id="top_header_links_right">

<a class="top_header_links" href="#">Распечатать</a><a class="top_header_links" href="#">Карта сайта</a><a class="top_header_links" href="#">Обратная связь</a>

</div>

<div class="clear"></div>

</div>

</div>

<div id="content">

<div id="leftcol">

menu

</div>

<div id="rightcol">

right

</div>

<div id="centercol">

content

</div>

</div>

</div>


<div id="footer">footer</div>


</body>
</html>

Edited by TonKhaO
Link to comment
Share on other sites

12 answers to this question

Recommended Posts

  • 0
попробовал ээффекхта никакого

А если оформить не

			   <div id="top_header_links_left">

<a class="top_header_links" href="#">Домой</a>

</div>

а

<div id="top_header_links_left"><a class="top_header_links" href="#">Домой</a></div>

?

Или же задавать на A float а на контейнер overflow:hidden. Хотя, ощущение, что без лищних пробелов все должно быть хорошо

Edited by Justnewone
Link to comment
Share on other sites

  • 0
А если оформить не

			   <div id="top_header_links_left">

<a class="top_header_links" href="#">Домой</a>

</div>

а

<div id="top_header_links_left"><a class="top_header_links" href="#">Домой</a></div>

?

Или же задавать на A float а на контейнер overflow:hidden. Хотя, ощущение, что без лищних пробелов все должно быть хорошо

хммм, убрал пробелы и отступы исчезли :)

есть ли рациональное этому обьяснение? :)

Link to comment
Share on other sites

  • 0
а на более приземленном? :)

скажем опера и мозилла игнорируют эти пробелы, что ж ИЕ как всегда "радует" :)

Только в астральном: как правило такое бывает если строчные элементы отбивать подобным образом. Для примера, задайте ссылкам display:block или float, который назначает block и отступы пропадут.

Link to comment
Share on other sites

  • 0
хммм, убрал пробелы и отступы исчезли :)

есть ли рациональное этому обьяснение? :)

Может ИЕ строку создает в контейнере, где фактически ничего нет (кроме блока с флотом), а другие нет. У строки своя высота. Вообще осёл есть осёл.

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