Jump to content
  • 0

Присоединение к вертикальной колонке другой колонки


freeneutron
 Share

Question

Подскажите, пожалуйста, как к вертикальной отцентрированной колонке присоединить прилепить другую колонку, так что бы отцентрированная колонка осталась отцентрированной?

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

:facepalmxd: ща подождите, я прочитаю ваш код силой мысли....

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

Ах да, код.


<style>
.main{
margin: 0px auto;
width: 768px;
}
</style>
<body>
<div class="main">
</div>
</body>

<div class="main"> - это колонка, проходящая по центру страницы. И вопрос, как бы к этой колонке прицепить другой див, не нарушив при этом положения первого?

Link to comment
Share on other sites

  • 0

могу предложить такой вариант

он может не подойти для конкретных целей, но смысл других способов такой же


<style>
.main{
position: relative;
margin: 0px auto;
width: 768px;
background:#bbb;
}
.new_main{
position: absolute;
width: 100px;
top: 0px;
left: 100%;
background:#555;
}
</style>
<body>
<div class="main">
<div class="new_main"></div>
</div>
</body>

можно выставить эту колонку по высоте .main слева или справа и реализовать возможно в некоторых случаях будет лучше через float:left|right и position:relative;

  • Like 1
Link to comment
Share on other sites

  • 0

могу предложить такой вариант

он может не подойти для конкретных целей, но смысл других способов такой же


<style>
.main{
position: relative;
margin: 0px auto;
width: 768px;
background:#bbb;
}
.new_main{
position: absolute;
width: 100px;
top: 0px;
left: 100%;
background:#555;
}
</style>
<body>
<div class="main">
<div class="new_main"></div>
</div>
</body>

можно выставить эту колонку по высоте .main слева или справа и реализовать возможно в некоторых случаях будет лучше через float:left|right и position:relative;

Спасибо!

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