Jump to content
  • 0

Трехколонный макет ? колонки во всю длину экрана


rent
 Share

Question

Не знаю, обсуждался ли данный прием на этом сайте, однако мне ничего по этому поводу найти не удалось.

Необхожимо сделать трехколонный шаблон для сайта, но при этом левая и правая колонки должны иметь длину* средней колонки, то есть доходить до самого низа страницы. Возможно ли это сделать средствами CSS (я думаю, что наверняка), может кто-то уже сталкивался с этим?

Замечу, что в большинстве случаев рассматривается "резиновый" вариант исполнения длины колонок, в зависимости от количества контента.

Заранее спасибо.

Link to comment
Share on other sites

12 answers to this question

Recommended Posts

  • 0

Нет почему-то не выходит. Вот CSS-код:

#main {
position: absolute;
left: -20px;
width: 100%;
height: auto;
min-height: 400px;
background-color: #ffffff;
margin-bottom: 20px;
}

#menu {
position: relative;
left: 20px;
margin-right: 20px;
top: 0px;
width: auto;
height: 30px;
background: #fcfdff;
}

#content {
position: relative;
margin-right: 250px;
margin-left: 250px;
left: 0px;
top: 0px;
width: 100%;
height: auto;
min-height: 300px;
}

#leftcolumn {
position: relative;
top: 0px;
margin-left: 20px;
width: 250px;
height: 100%;
float: left;
background: #eff5ff;
margin-bottom: 100px;
}

#rightcolumn {
position: relative;
top: 0px;
right: 0px;
float: right;
width: 250px;
height: 100%;
background: #eff5ff;
}

Content, leftcolumn, rightcolumn ? колонки, main ? главный слой, menu ? меню. Меню и колонки лежат в одном главном слое. Может, я что-то не так сделал?

Link to comment
Share on other sites

  • 0

это у тебя уже какой-то многоколоночный макет получается.....

Если тебе нужно сделать три колонки, то в первую очередь надо определиться какие именно!!! Из твоего пояснения под кодом я поняла, что тебе нужны колонки: Content, leftcolumn, rightcolumn, а ты говоришь, что "Меню и колонки лежат в одном главном слое." Чет ты напутал явно...

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