Jump to content
  • 0

Помогите сделать резиновый шаблон


Soniclord
 Share

Question

Уважаемы специалисты!

У меня есть шаблон "статичной" страницы, а мне просто необходимо сделать "резиновый" дизайн этой страницы - чтобы изменялся center.

Если ставить 100% на .all и на .center, то все к чертям скатывается :rolleyes:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<title>Дивовый дизайн</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<style>
.all {
width:900px;
margin:auto;
text-align:center;
}
.header {
border:1px solid #666666;
margin: 0 0 5px 0;
padding:5px 5px 5px 5px;
}
.center {
width:480px;
min-height:600px;
border:1px solid #666666;
margin:0 0 0 210px;
position:inherit;
float:left;
}
.left {
min-height:600px;
border:1px solid #666666;
margin: 0 0 5px -692px;
width:200px;
float:left;
}
.right {
min-height:600px;
border:1px solid #666666;
margin: 0 0 5px 0;
width:200px;
float:right;
}
.footer {
border:1px solid #666666;
clear:both;
padding:5px 5px 5px 5px;
}</style>

<body>
<div class="all">
<div class="header">
Header - верхний блок странички
</div>
<div class="center">
Center - центральный блок. Здесь выводится основной контент
</div>
<div class="left">
Left - левая колонки. Навигация
</div>
<div class="right">
Right - правая колонка. Реклама
</div>
<div class="footer">
Footer - низ. Здесь обычно копирайт
</div>
</div>
</body>
</html>

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

100% на все ставить конечно же нельзя. Вычисли пропорционально, сколько пикселы у тебя в процентах занимают и используй процентную запись.

Вроде того

900px = 100%

450px = 50%.

В суумме только смотри чтобы 100% получилось, а то из-за округления может оказаться и больше число.

Link to comment
Share on other sites

  • 0
100% на все ставить конечно же нельзя. Вычисли пропорционально, сколько пикселы у тебя в процентах занимают и используй процентную запись.

Вроде того

900px = 100%

450px = 50%.

В суумме только смотри чтобы 100% получилось, а то из-за округления может оказаться и больше число.

но ведь тогда придется делать левое и правое меню тоже процентно-зависимыми, а мне нужны статические (т.е. одинаковой ширины)

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>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<title>Дивовый дизайн</title>
<link rel="stylesheet" type="text/css" href="style.css">
<style type="text/css">
.all {
float: left;
width: 100%;
margin-bottom: 10px;
}
.left, .center, .right, .header, .footer {
border: 1px solid #666;
}
.header {
margin: 0 0 5px 0;
padding: 5px;
}
.center {
min-height: 600px;
margin: 0 215px;
}
.left {
min-height: 600px;
float: left;
width: 200px;
margin-left: -100%;
}
.right {
min-height: 600px;
float: left;
width: 200px;
margin-left: -205px;
}
.footer {
clear: both;
padding: 5px;
}
</style>
</head>
<body>
<div class="header">
Header - верхний блок странички
</div>

<div class="all">
<div class="center">
Center - центральный блок. Здесь выводится основной контент
</div>
</div>
<div class="right">
Right - правая колонка. Реклама
</div>
<div class="left">
Left - левая колонки. Навигация
</div>

<div class="footer">
Footer - низ. Здесь обычно копирайт
</div>

</body>
</html>

Только учти, что добавление padding к слою увеличивают его ширину и придется некоторые значения подкорректировать.

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