Jump to content
  • 0

text-align в IE<9


SuperJerk
 Share

Question

Такая трабла: IE младше 9-ой версии неправильно выравнивают inline-block элементы.


<div class="parent">
<div class="this-is-inline-block"></div>
<div class="this-is-inline-block"></div>
<div class="this-is-inline-block"></div>
</div>

Задав блоку с классом "parent" свойство text-align: center, а дочерним элементам свойство inline-block, нормальные браузеры располагают инлайн-блоки ровно по центру, но не IE<9. Как справиться с этим? Гуглил, но тамошние приемы мне не помогли, или я просто делал что-то не так.

Edited by SuperJerk
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

у меня нормально работает до 8 версии. а вот в 7 версии они в столбик, но все равно по центру.


.parent {
text-align: center;
}
.this-is-inline-block {
display: inline-block;
background: brown;
border: solid 1px black;
width: 100px;
height: 50px;
}

Link to comment
Share on other sites

  • 0

у меня нормально работает до 8 версии. а вот в 7 версии они в столбик, но все равно по центру.


.parent {
text-align: center;
}
.this-is-inline-block {
display: inline-block;
background: brown;
border: solid 1px black;
width: 100px;
height: 50px;
}

у IE7 частичная поддержка inline-block. Для нормально отображения надо добавить haslayout и сss-хак *inline.

Блоки центрируются, но не ровно по центру. Немного влево косят всё равно.

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