Jump to content
  • 0

Разъезжаются блоки.


Simel
 Share

Question

Здравствуйте, при изменений размера окна браузера или просто ,при нажатий сtrl + , некоторые блоки в дизайне разъезжаются по сторонам.

Как избежать этой проблемы ?

Посмотреть что происходит , можно по этой сыллке http://www.nurme18.eu/fc/

Спасибо.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

если возможно, то лучше вот так сделать, как мне кажется внутри #wrapper создать два блока: .right и .left., а в них уже поместить остальные дивы. И ДИВу .right задать float:right.

Пример — http://jsfiddle.net/CTrz3/

Код

<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
body{
font-size: 3em;
background-color: #8ed129;
}
.right{
float: right;
padding: 10px;
background-color: #8EC6EA
}
.right div{
background-color: #3C59E3;
margin: 10px;
}
.left{
padding: 10px;
background-color: #8CEA8A;
}
.left div{
background-color: #E08725;
margin: 10px;
}
</style>
</head>
<body>
<div id="wrapper">
<div class="right">
<div>правый раз</div>
<div>правый два</div>
<div>правый три</div>
</div>
<div class="left">
<div>левый раз</div>
<div>левый два</div>
<div>левый три</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