Jump to content
  • 0

соприкосновение div при изменении разрешения


SLameN
 Share

Question

Проблема при разном разрешении экранов.

Как должно быть в идеале (разрешение 1600):

421be2cdebfc5370d48b60d964d816b1.jpg

А вот что получается при разрешении 1280:

26748c05d3e3c1437776390552f5b17d.jpg

Код такой:

Центральный блок:

margin: 0px auto; 
width: 1000px;

Чат:

position: absolute;
right: 5px;

Сначала я сделал, что для чата следующее: left: 1200px и при разрешениях 1280 и 1600 все было хорошо. Но когда пошел к начальнику и у него разрешении более 1600, там был уже косяк... Как сделать так, чтобы при разрешении 1280, не накладывался чат на центральный блок? Например, чтобы он уходил правее (скроллингом прокручивать вправо).

Полный размер:

0b2ed2866a329bd2df7491d438074b75.jpeg

Edited by SLameN
Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

Вот это засуньте в div

Структура такая:


<div id="main"></div>
<div id="chat"></div>

т.е так


<div class="page">
<div id="main"></div>
<div id="chat"></div>
</div>

/*К примеру так*/
.page{
width: 1200px;
min-width:1200px;
}

вот держи

Edited by Modestes
Link to comment
Share on other sites

  • 0

Получилось, но теперь блок main стал по левому краю. Это из-за float:left? И как исправить его по центру?


.page {
width:1200px;
min-width:1200px;
}

#main {
margin: 0px auto;
border: solid 1px #cacaca;
min-width:1000px;
width:1000px;
border-radius: 0px 0px 6px 6px;
float:left;
}

#chat {
width:200px;
float:right;
}

Edited by SLameN
Link to comment
Share on other sites

  • 0

да, мне показалось вам так и нужно,

если марджином-авто выравнивать то ниче не получится, правая колонка будет под main

покажи рисунок как должен выглядеть окончательный вариант

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