Jump to content
  • 0

деление пространства меж обектами


serjico
 Share

Question

скажем есть div c вложенными в него 3 других контейнера div

как сделать так чтобы один из вложенных имел определенную ширину (в пикселях) и находился по середине (меж осталных)

а остальные поделили оставшееся пространство (от родителя) в соотношение 1 к 2

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0
скажем есть div c вложенными в него 3 других контейнера div

как сделать так чтобы один из вложенных имел определенную ширину (в пикселях) и находился по середине (меж осталных)

а остальные поделили оставшееся пространство (от родителя) в соотношение 1 к 2

А для чего вы это хотите использовать?

Link to comment
Share on other sites

  • 0

это я усложнил задачу что бы максимум подчеркнуть

у меня в данный момент такая проблема

в контейнере два элемета один высотой 170 рх

за ним в одну строку (и только после подставления  

как его заставить растинуться на оставшуюся часть

Link to comment
Share on other sites

  • 0

вот:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 
<html>
<head>
<style>
#pred
{
float:left;
background-color:#0000FF;
width:50%;
height:40px;
text-align:right;
position:relative;
margin-top:-40px;
z-index:1;
}
#sled
{
float:right;
background-color:#00FF00;
width:50%;
height:40px;
text-align:left;
position:relative;
margin-top:-40px;
z-index:1;
}
#h1
{
width:200px;
height:40px;
background-color:#FF0000;
margin-left:auto;
margin-right:auto;
position:relative;
z-index:2;
}
</style>
</head>
<body>
<div id="h1"><p style="vertical-align:top;"></p></div>
<div id="pred"><p style="margin-right:100px;"></p></div>
<div id="sled"><p style="margin-left:100px;"></p></div>
<p align="center" style="margin:0px">aaaaa</p>
</body>
</html>

Link to comment
Share on other sites

  • 0

данный пример не изобразил что мне хотелось

но подал интересную мысль игры при верстке отступами

правда что то самостоятельно я их не втянул

да из примера мало что понял

обьясните кто нить

или скажите где набраться можно

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