Jump to content
  • 0

Суммарная ширина вложенных float


alb
 Share

Question

Приветствую, не могу победить особенность некоторых браузеров при вычислении суммарной ширины сестринских float-ов, в случае задания ширины родительского контейнера в процентах. Например:


<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style>
* {margin: 0; padding: 0; border: none; outline: none;}
#wrap {width: 60%; margin: 0 auto; background: #F3F; overflow: hidden;}
#nav {float: left; width: 100%; background: #039;}
#content {
float: left;
width: 100%;
}
#col1 {
width: 30%;
background: #999;
}
#col2 {
width:40%;
background: #696;
}
#col3 {
width:30%;
background: #0CF;
}

#content div {float: left; clear: right;}

</style>
</head>

<body>
<div id="wrap">
<div id="nav"><p>NAV</p></div>
<div id="content">
<div id="col1"><p>Column 1</p></div>
<div id="col2"><p>Column 2</p></div>
<div id="col3"><p>Column 3</p></div>
</div>
</div>
</body>
</html>

Здесь, #wrap - главный родительский контейнер, который задаёт общую ширину в процентах, относительно которого уже и высчитываются все вложенные значения ширины, сабжевая проблема наглядно продемонстрированна на следующем скрине:

2e7e0129b6e7.jpg

Здесь, справа от Column 3 видно малиновой фон внешнего контейнера (#wrap : ... background: #F3F;...) чего не должно быть, так как ширина предка для плавающих элементов col1-col3 задана в 100%, а их ширины (col1-col3) в сумме составляют 100%.

вот здесь, этот участок увеличен для большей наглядности:

2d962af6ae65.jpg

Собственно, почему это происходит и как решить проблему кроссбраузерно ?

зы: "малиновая полоса" появляется в Opera (всех версий) и во всех webkit (то есть safari & chrom), отсутствует в IE8-9 и ФФ (> 3.6 версии, ниже у меня нет). Так же, эта особенность не проявляется в IE6-7, но там свои особенности и непроявляется она из-за другого бага, который фиксится clear: right и затрагивает другие особенности, но эти два браузера мы в расчёт не берём.

Спасибо!

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

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