Jump to content
  • 0

Центрирования по осям X и Y


rookie
 Share

Question

Есть HTML:


<div id="wrapper">
<div id="cell">
<div class="content">
Content goes here
</div>
</div>
</div>

Задача: расположить div.content аккурат по центру окна браузера, при этом, у блока неизвестны width и height

Решение №1:

#wrapper {
display: table;
}
#cell {
display: table-cell;
vertical-align: middle;
text-align: center;
}
.content {
display: inline-block;
}

Вопрос: как можно добиться аналогичного результата без использования display: table/table-cell и JS?

Edited by rookie
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Для ИЕ используй экпрешан.

А если без JS? И можно даже забыть про поддержку старых ослов. Я слышал что можно добиться поставленной задачи через относительное позиционирование, только я пока смог решить задачу наполовину таким способом:


#cell {
position: relative;
display: inline-block;
left: 50%;
}

.content {
position: relative;
right: 50%;
display: inline-block;
}

Как я уже говорил выше, так можно решить задачу наполовину, т.е. - центрировать блок по горизонтали. А как сделать то же самое но по-вертикали, придерживаясь условий задачи(не задавая размеров и не используя JS)?

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