Jump to content
  • 0

Блок по всему родительскому блоку с выравниванием по центру


Absinthe
 Share

Question

Есть родительский div

Его нельзя трогать.

Нужно создать в нем div внутри с размерами 100%. И выравниванрием по центру.

Обычный способ с display: table-cell; почему-то не подходит.

Вот сокращенный код:


<style>
.center {
background-color: gray;
text-align: center;
display: table-cell;
vertical-align: middle;
}
</style>

<div style="position: absolute; width: 800px; height: 600px; background-color: yellow;">
<div style="position: absolute; width: 100%; height: 100%" class="center">Проверка</div>
</div>

Не работает vertical-align: middle; из-за position: absolute;

Если position: absolute; убрать(а этого нельзя делать для родительского блока!), то не будет работать width: 100%; height: 100%"

Как решить проблему?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Нужно это?


<style>
.center {
position: absolute;
width: 50%; /* Ширина слоя в процентах */
height: 70%; /* Высота слоя в процентах */
left: 50%; /* Положение слоя от левого края */
top: 50%; /* Положение слоя от верхнего края */
margin-left: -25%; /* Отступ слева */
margin-top: -35%; /* Отступ сверху */
background: #fc0;
text-align: center;
}
</style>

<div style="position: absolute; width: 800px; height: 600px; background-color: yellow;">
<div class="center">Может так?</div>
</div>

Edited by MVS
Link to comment
Share on other sites

  • 0
откуда по вашему дочерний блок будет высчитывать размеры для выравнивания если он растянут до своего родителя
Они внутри него выравниваются, это же ячейка таблицы.
Нужно это?
Спасибо, попробую.
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