Jump to content
  • 0

Резиновая рамка п каям сайта.


chillout
 Share

Question

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

Подскажите пожалуйста, никак не соображу...

Как сделать резиновую рамку по краям сайта, которая будет растягиваться на 100% по ширине и высоте вместе с контентом?

cfac1eb8.jpg

Разрезанные рамки в архиве - http://dl.dropbox.com/u/16468356/images.rar

Edited by chillout
Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

Если под старые браузеры подстраиваться, то несколько обёрток, каждая - со своим куском фона.

можно по подробнее?

Если на старые браузеры начхать, то множественный фон

Ну если опираться на эту таблицу: http://www.findmebyip.com/litmus/ ,то уж слишком новое это, хотя конечно задачу облегчает значительно )

Link to comment
Share on other sites

  • 0
можно по подробнее?

Схематично:

<div class="border top-left">
<div class="border top-right">
<div class="border bottom-right">
<div class="border bottom-left">
<div id="content"></div>
</div>
</div>
</div>
</div>

div.border { height: 100%; width: 100%;}
div.top-left { background: url('top-left-corner.gif') no-repeat top left; }
div.top-right { background: url('top-right-corner.gif') no-repeat top right; }
/* и т.д. */

то уж слишком новое это

Да не сказал бы. Но дело ваше.

Edited by Gaspode
Link to comment
Share on other sites

  • 0
можно по подробнее?

Схематично:

<div class="border top-left">
<div class="border top-right">
<div class="border bottom-right">
<div class="border bottom-left">
<div id="content"></div>
</div>
</div>
</div>
</div>

div.border { height: 100%; width: 100%;}
div.top-left { background: url('top-left-corner.gif') no-repeat top left; }
div.top-right { background: url('top-right-corner.gif') no-repeat top right; }
/* и т.д. */

то уж слишком новое это

Да не сказал бы. Но дело ваше.

Дружище, а как этот код заставит тянуться рамку, даже в отсутствии контента?

Link to comment
Share on other sites

  • 0

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css" >
html, body {
height: 100%;
margin: 0;
}
table {
table-layout: fixed;
width: 100%;
height: 100%;
border-collapse: collapse;
padding: 0;
margin: 0;
}
table td {
padding: 0;
border: 1px solid black;
}
.left-top, .left-down, .right-top, .right-down, .left, .right {
height: 30px;
width: 30px;
background: red;
}
.left, .right {
background: lavender;
height: 100%;
}
</style>
</head>
<body>
<table>
<tr>
<td class="left-top" >

</td>
<td class="center-top" >

</td>
<td class="right-top" >

</td>
</tr>
<tr>
<td class="left" >

</td>
<td class="center" >

</td>
<td class="right" >

</td>
</tr>
<tr>
<td class="left-down" >

</td>
<td class="center-down" >

</td>
<td class="right-down" >

</td>
</tr>
</table>
</body>
</html>

Link to comment
Share on other sites

  • 0


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css" >
html, body {
height: 100%;
margin: 0;
}
table {
table-layout: fixed;
width: 100%;
height: 100%;
border-collapse: collapse;
padding: 0;
margin: 0;
}
table td {
padding: 0;
border: 1px solid black;
}
.left-top, .left-down, .right-top, .right-down, .left, .right {
height: 30px;
width: 30px;
background: red;
}
.left, .right {
background: lavender;
height: 100%;
}
</style>
</head>
<body>
<table>
<tr>
<td class="left-top" >

</td>
<td class="center-top" >

</td>
<td class="right-top" >

</td>
</tr>
<tr>
<td class="left" >

</td>
<td class="center" >

</td>
<td class="right" >

</td>
</tr>
<tr>
<td class="left-down" >

</td>
<td class="center-down" >

</td>
<td class="right-down" >

</td>
</tr>
</table>
</body>
</html>

Спасибо Temiks, как раз вот в голову пришла идея, а почему бы не сделать таблицей, совсем про неё забыл )

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