Jump to content
  • 0

Верстка резиновых блоков


vladimir_lwlx
 Share

Question

Добрый день. Вопрос следующий: возможно ли такую верстку (см. рис.) реализовать на чистом CSS+HTML, и как?, (я реализовал но с помощью javascript, узнавая offset.width ширину блока с контентом и соответственно увеличивая резиновый блок под ним)

c4c28e5400c1.jpg

Edited by vladimir_lwlx
Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 0

Лови дружище :)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>3 Колонки</title>
<style type="text/css">
*{ margin: 0; padding: 0;}
body { min-width: 500px;}
div { height: 100px;}
#wrap1 {
margin: 5px;
position: relative;
float: left;
left: 50%;

}
#wrap2 {
float: left;
left: -50%;
position: relative;
padding: 5px;
border: 1px solid #000;
}
div.left {
position: absolute;
width: 200px;
background: red;
left: 5px;
top: 5px;
}
div.right {
position: absolute;
width: 200px;
background: red;
right: 5px;
top: 5px;
}
div.content {
background: blue;
position: absolute;
left: 210px;
right: 210px;
top: 5px;
}
div#s {
height: 80px;
margin: 10px 100px 0;
position: relative;
z-index: 2;
background: #fff;
opacity: 0.7;
filter:alpha(opacity=70);

}
</style>

<!--[if IE 6]>
<style type="text/css">
div#s {display: inline; float: left;}
body {width:expression(document.documentElement.clientWidth < 500 ? "500px" : "auto");}
div.content{width: expression(this.parentNode.offsetWidth-210-213+'px');}
</style>
<![endif]-->

<!--[if IE 7]>
<style type="text/css">
div#s { margin-top: 15px;height: 80px;}
</style>
<![endif]-->
</head>

<body>

<div id="wrap1">
<div id="wrap2">
<div id="s">
<p> Soon our new web shop
will be launche again with
new design and great
featurearmed with many
new products and the
</p>
</div>
<div class="left"></div>
<div class="right"></div>
<div class="content"></div>
</div>
</div>

</body>
</html>

Link to comment
Share on other sites

  • 0
:) Круто, красава! Благодарю!, А ты вначале написал код - я его и не понял (с 4-мя дивами, или может быть ты не совсем понял задачу :))) ), ушел в раздумья, - вернулся - тут другое :) Edited by vladimir_lwlx
Link to comment
Share on other sites

  • 0
:) Круто, красава! Благодарю!, А ты вначале написал код - я его и не понял (с 4-мя дивами, или может быть ты не совсем понял задачу :))) ), ушел в раздумья, - вернулся - тут другое :)

Да, вначале я просто невнимательно прочитал задание. Много буков было) А потом всё таки решил осилить и соорудил решение :)

Link to comment
Share on other sites

  • 0

psywalker, дружище, а ты не знаешь случайно возможно ли в этой ситуации, теперь div#s (или <p> внутри него) выровнять по вертикали - по центру (по скольку он тянется ширину И в высоту), - стандартными способами я перепробовал всяко, у меня почему-то не получается((( и через абсолютное позиционирование (но он тогда как бы "выбивается" что-ли из потока и верстка разваливается), и vertical-align, (добавляя строчной элемент), и таблицой тоже?

Edited by vladimir_lwlx
Link to comment
Share on other sites

  • 0

Дружище, для тебя всё что угодно :)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>3 Колонки</title>
<style type="text/css">
*{ margin: 0; padding: 0;}
body { min-width: 500px;}
div { height: 100px;}
#wrap1 {
margin: 5px;
position: relative;
float: left;
left: 50%;

}
#wrap2 {
float: left;
left: -50%;
position: relative;
padding: 5px;
border: 1px solid #000;
}
div.left {
position: absolute;
width: 200px;
background: red;
left: 5px;
top: 5px;
}
div.right {
position: absolute;
width: 200px;
background: red;
right: 5px;
top: 5px;
}
div.content {
background: blue;
position: absolute;
left: 210px;
right: 210px;
top: 5px;
}
div#s {
height: 80px;
margin: 10px 100px 0;
display: table;
position: relative;
z-index: 2;
background: #fff;
opacity: 0.7;
filter:alpha(opacity=70);


}
div#s p { display: table-cell;vertical-align: middle; }
</style>

<!--[if IE 6]>
<style type="text/css">
div#s {display: inline; float: left;}
body {width:expression(document.documentElement.clientWidth < 500 ? "500px" : "auto");}
div.content{width: expression(this.parentNode.offsetWidth-210-213+'px');}
div#s p {margin-top: expression((parentNode.offsetHeight - this.offsetHeight)<0 ? "0" : (parentNode.offsetHeight - this.offsetHeight)/2 + "px");}
</style>
<![endif]-->

<!--[if IE 7]>
<style type="text/css">
div#s { margin-top: 15px;height: 80px;}
div#s p {margin-top: expression((parentNode.offsetHeight - this.offsetHeight)<0 ? "0" : (parentNode.offsetHeight - this.offsetHeight)/2 + "px");}
</style>
<![endif]-->
</head>

<body>

<div id="wrap1">
<div id="wrap2">
<div id="s">
<p> Soon our new web shop
will be launche again with
new design and great
featurearmed with many
new products and the
</p>
</div>
<div class="left"></div>
<div class="right"></div>
<div class="content"></div>
</div>
</div>

</body>
</html>

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