Jump to content
  • 0

вложенные 100% div-ы, внутренний вылазит на толщину границы


stalker_2000
 Share

Question

Приветствую! Есть несложный код:


<html>
<head>
<style>
#b { width: 500px; height: 300px; }

#i1 { border: 10px solid black; }
#i2 { border: 10px solid red; }
#i1, #i1 #i2 { width: 100%; height: 100%; }
</style>
</head>

<body>
<div id="b">
<div id="i1"><div id="i2">dddddddd</div></div>
</div>
</body>
</html>

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

Edited by stalker_2000
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

По спецификации CSS ширина не включает толщину границ вокруг элемента, значение отступов и полей. Но разные браузеры считают ширину по разному в зависимости от прописанного доктайпа, подробнее http://htmlbook.ru/css/width.

если вам нужно чтоб не вылазило то вычитайте из width толщину границ, отступы и поля.

Для более новых версий браузеров можно использовать свойство css box-sizing

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