Jump to content
  • 0

Размещение трех блоков разной ширины


Faradey99
 Share

Question

Помогите пожалуйста, есть резиновый макет с максимальной шириной 1280 и минимальной 980, есть три блока разной ширины, которые находятся на одном уровне, при изменении ширины центральный блок должен находится на равном расстоянии от левого и правого блока, то есть так:

0c778d8e21c8t.jpg

Сам я пробовал приблизительно следующее (не думаю что это хороший вариант):

<!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></title>
<style type="text/css">
ul,ol,dl,li,dt,dd,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote {margin:0;padding:0}
div.wrapper {
background:#F5F5F5;
margin:0 auto;
max-width:1280px;
min-width:980px;
padding:20px
}
div.block {border:1px solid #000;height:140px;position:relative}
div.left, div.center, div.right {position:absolute}
div.left, div.right {z-index:1}
div.left {
background:#FF0;
height:68px;
left:10px;
top:40px;
width:244px
}
div.center {
background:#F00;
height:46px;
left:31%;
top:62px;
width:412px;
z-index:0
}
div.right {
background:#0FF;
height:86px;
right:10px;
top:10px;
width:210px
}
</style>
</head>

<body>

<div class="wrapper">
<div class="block">
<div class="left">
</div>
<div class="center">
</div>
<div class="right">
</div>
</div> <!-- .block -->
</div><!-- .wrapper -->

</body>
</html>

Получается не по-центру, но приблизительно...

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

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