Jump to content
  • 0

Почему справа нет отступа


frayd
 Share

Question

Почему в FF 3.0.5 и Хроме 1.0.154.43 нету справа отступа? В IE7 есть, 10px как и положено.

Сам код:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">

<title>CSS</title>

<style type="text/css">

body {

margin:0;

padding:0;

}

div {

width:100%;

margin:10px;

color:white;

background-color:blue;

}

</style>

</head>

<body>

<div>Красивый заголовок на синем фоне</div>

</body>

</html>

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0
И есть скроллер.

Потому что 100% от auto = window width

А туда еще надо margin добавить...

Это то понятно что должен быть скроллер. Но веть всеравно если его прокрутить в право, то там должен быть отступ.На экране не должно умещаться 10px синей полоски и 10px отступа.

Или я чтото не понял...

Link to comment
Share on other sites

  • 0
Это то понятно что должен быть скроллер. Но веть всеравно если его прокрутить в право, то там должен быть отступ.На экране не должно умещаться 10px синей полоски и 10px отступа.

Или я чтото не понял...

Э, не должно быть там отступа

http://www.w3.org/TR/CSS21/visudet.html#blockwidth

If 'width' is not 'auto' and 'border-left-width' + 'padding-left' + 'width' + 'padding-right' + 'border-right-width' + scrollbar width (if any) (plus any of 'margin-left' or 'margin-right' that are not 'auto') is larger than the width of the containing block, then any 'auto' values for 'margin-left' or 'margin-right' are, for the following rules, treated as zero.

If all of the above have a computed value other than 'auto', the values are said to be "over-constrained" and one of the used values will have to be different from its computed value. If the 'direction' property of the containing block has the value 'ltr', the specified value of 'margin-right' is ignored and the value is calculated so as to make the equality true. If the value of 'direction' is 'rtl', this happens to 'margin-left' instead.

Вольный перевод:

Если указана ширина не "авто" и 'border-left-width' + 'padding-left' + 'width' + 'padding-right' + 'border-right-width' + scrollbar width (если есть) (плюс любое из значений 'margin-left' или 'margin-right' не "авто") больше чем ширина блока-контейнера, то любой из параметров 'margin-left' или 'margin-right', который имеет значение "авто", считается нулевым.

Если все из вышеперечисленных параметров имеют вычисленное значение другое чем "авто", такой случай называется "не влажу, б**" и одно из используемых значений будут иметь реальное значение, отличное от вычисленного. Если направление текста блока-контейнера с лева на право, указанное значение 'margin-right' игнорируется и значение вычисляется таким, какое сделало бы уравнение верным. А если направление текста с права на лево, то така фигня должна произойти с 'margin-left'.

Link to comment
Share on other sites

  • 0
такой случай называется "не влажу, б**"

:) хахах Жжешь)

Решается таким образом(если все таки не убирать width:100%; ):

<div style="width:100%;margin-left:20px;position:relative;"><div style="height:20px;background-color:red;margin-right:20px;"></div></div>

Edited by Victor Ananiev
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