Jump to content
  • 0

рамка во круг сайта


chillout
 Share

Question

Приветствую!

Подскажите пожалуйста, что-то никак не пойму...

Нужна рамка для сайта во всю ширину и высоту страницы, с 5px отступом со всех сторон от тела документа, делаю margin:5; но сайт растягивается больше чем 100% и к тому же рамка прилипает к правой части и низу.


<!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>
html,body {
margin:5;
padding:0;
width: 100%;
height: 100%;
color: #FFF;
background-color: #000;
}
#container {
width:100%;
height:100%;
border:#FC0 2px solid;
}
</style>
</head>

<body>
<div id="container">
</div>
</body>
</html>

Link to comment
Share on other sites

Recommended Posts

  • 0

Зачем нужно вот это??

<div class="a c lert_bord"></div>

<div class=" a c right_bord"></div>

Боковые границы легко можно было повесить на растянутый контейнер.

И ещё непонятно, нафига делать верхний отрицательный отступ

#main{

margin:-5px 0 0;

}

Link to comment
Share on other sites

  • 0

Зачем нужно вот это??

<div class="a c lert_bord"></div>

<div class=" a c right_bord"></div>

Боковые границы легко можно было повесить на растянутый контейнер.

И ещё непонятно, нафига делать верхний отрицательный отступ

#main{

margin:-5px 0 0;

}

Если повесить боковые границы на растянутый див, то они уйдут наверх вместе с контейнером.

margin:-5px;- чтобы поднять растянутый див на 5пх.

Link to comment
Share on other sites

  • 0

Зачем нужно вот это??

<div class="a c lert_bord"></div>

<div class=" a c right_bord"></div>

Боковые границы легко можно было повесить на растянутый контейнер.

И ещё непонятно, нафига делать верхний отрицательный отступ

#main{

margin:-5px 0 0;

}

Если повесить боковые границы на растянутый див, то они уйдут наверх вместе с контейнером.

margin:-5px;- чтобы поднять растянутый див на 5пх.

Ещё раз глянул в код, в целом чушь понаписана полная и неправильная.

Если повесить боковые границы на растянутый див, то они уйдут наверх вместе с контейнером.

margin:-5px;- чтобы поднять растянутый див на 5пх.

Глупости.

Link to comment
Share on other sites

  • 0

Ещё раз глянул в код, в целом чушь понаписана полная и неправильная.

Глупости.

Ну покажи новичкам мастер-класс. Мне очень интересно посмотреть твой Правильный код.

Edited by chikadesign
Link to comment
Share on other sites

  • 0

Ещё раз глянул в код, в целом чушь понаписана полная и неправильная.

Глупости.

Ну покажи новичкам мастер-класс. Мне очень интересно посмотреть твой Правильный код.

Интересуйтесь, почему ваш код посчитали глупостью и получите опыт; обижайтесь - и останьтесь ни с чем.

Edited by buddah
Link to comment
Share on other sites

  • 0

Ещё раз глянул в код, в целом чушь понаписана полная и неправильная.

Глупости.

Ну покажи новичкам мастер-класс. Мне очень интересно посмотреть твой Правильный код.

Да, конечно же, нет проблем:

<!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 type='text/css'>
html,body { height: 100%;}
body { margin: 0;}
.wrap {
min-height: 100%;
_height: 100%;
position: relative;
border-left: 5px solid #000;
border-right: 5px solid #000;
}
.wrap .top,
.wrap .bottom {
position: absolute;
height: 5px;
background: #000;
width: 100%;
}
.wrap .top { top: 0;}
.wrap .bottom { bottom: 0;}
</style>

</head>

<body>
<div class="wrap">
<i class="top"></i>
<i class="bottom"></i>
</div>
</body>
</html>

Link to comment
Share on other sites

  • 0

Ещё раз глянул в код, в целом чушь понаписана полная и неправильная.

Глупости.

Ну покажи новичкам мастер-класс. Мне очень интересно посмотреть твой Правильный код.

Да, конечно же, нет проблем:

<!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 type='text/css'>
html,body { height: 100%;}
body { margin: 0;}
.wrap {
min-height: 100%;
_height: 100%;
position: relative;
border-left: 5px solid #000;
border-right: 5px solid #000;
}
.wrap .top,
.wrap .bottom {
position: absolute;
height: 5px;
background: #000;
width: 100%;
}
.wrap .top { top: 0;}
.wrap .bottom { bottom: 0;}
</style>

</head>

<body>
<div class="wrap">
<i class="top"></i>
<i class="bottom"></i>
</div>
</body>
</html>

Спасибо. )

Но не видно отступов?

у тебя бордер прижат к границам окна. а должно быть от окна до бордера отступы на 5пх.

Ещё раз глянул в код, в целом чушь понаписана полная и неправильная.

Глупости.

Ну покажи новичкам мастер-класс. Мне очень интересно посмотреть твой Правильный код.

Интересуйтесь, почему ваш код посчитали глупостью и получите опыт; обижайтесь - и останьтесь ни с чем.

Согласна, я исправлюсь.

Link to comment
Share on other sites

  • 0

Спасибо. )

Но не видно отступов?

у тебя бордер прижат к границам окна. а должно быть от окна до бордера отступы на 5пх.

Ааа, извиняюсь, нет проблем, держи:

<!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 type='text/css'>
html,body { height: 100%;}
body { margin: 0 5px;}
.wrap {
min-height: 100%;
_height: 100%;
position: relative;
}
.wrap .border {
position: absolute;
border: 5px solid #000;
top: 5px;
left: 0;
right: 0;
bottom: 5px;
z-index: -1;
}

</style>

</head>

<body>
<div class="wrap">
<i class="border"></i>
</div>
</body>
</html>

Link to comment
Share on other sites

  • 0

Спасибо. )

Но не видно отступов?

у тебя бордер прижат к границам окна. а должно быть от окна до бордера отступы на 5пх.

Ааа, извиняюсь, нет проблем, держи:

<!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 type='text/css'>
html,body { height: 100%;}
body { margin: 0 5px;}
.wrap {
min-height: 100%;
_height: 100%;
position: relative;
}
.wrap .border {
position: absolute;
border: 5px solid #000;
top: 5px;
left: 0;
right: 0;
bottom: 5px;
z-index: -1;
}

</style>

</head>

<body>
<div class="wrap">
<i class="border"></i>
</div>
</body>
</html>

Супер! :rolleyes:

Теперь вижу, что мой код полная чушь. :)

Link to comment
Share on other sites

  • 0

Спасибо. )

Но не видно отступов?

у тебя бордер прижат к границам окна. а должно быть от окна до бордера отступы на 5пх.

Ааа, извиняюсь, нет проблем, держи:

<!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 type='text/css'>
html,body { height: 100%;}
body { margin: 0 5px;}
.wrap {
min-height: 100%;
_height: 100%;
position: relative;
}
.wrap .border {
position: absolute;
border: 5px solid #000;
top: 5px;
left: 0;
right: 0;
bottom: 5px;
z-index: -1;
}

</style>

</head>

<body>
<div class="wrap">
<i class="border"></i>
</div>
</body>
</html>

Супер! :rolleyes:

Теперь вижу, что мой код полная чушь. :)

Вот так вот :)

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