Centering in CSS: A Complete Guide
Centering things in CSS is the poster child of CSS complaining. Why does it have to be so hard? They jeer. I think the issue isn’t that it’s difficult to do, but in that there so many different ways of doing it, depending on the situation, it’s hard to know which to reach for. So let’s make it a decision tree and hopefully make it easier. I need to center…
Is it inline or inline-* elements (like text or links)? You can center inline elements horizontally, within a block-level parent element, with just:
This will work for inline, inline-block, inline-table, inline-flex, etc. Is it a block level element? You can center a block-level element by giving it margin-left and margin-right of auto (and it has a set width , otherwise it would be full width and wouldn’t need centering). That’s often done with shorthand like this:
This will work no matter what the width of the block level element you’re centering, or the parent. Note that you can’t float an element to the center. There is a trick though. Is there more than one block level element? If you have two or more block-level elements that need to be centered horizontally in a row, chances are you’d be better served making them a different display type. Here’s an example of making them inline-block and an example of flexbox:
Unless you mean you have multiple block level elements stacked on top of each other, in which case the auto margin technique is still fine:
Vertical centering is a bit trickier in CSS. Is it inline or inline-* elements (like text or links)? Is it a single line? Sometimes inline / text elements can appear vertically centered, just because there is equal padding above and below them.
If padding isn’t an option for some reason, and you’re trying to center some text that you know will not wrap, there is a trick were making the line-height equal to the height will center the text.
Is it multiple lines? Equal padding on top and bottom can give the centered effect for multiple lines of text too, but if that isn’t going to work, perhaps the element the text is in can be a table cell, either literally or made to behave like one with CSS. The vertical-align property handles this, in this case, unlike what it normally does which is handle the alignment of elements aligned on a row. (More on that.)
If something table-like is out, perhaps you could use flexbox? A single flex-child can be made to center in a flex-parent pretty easily.
Remember that it’s only really relevant if the parent container has a fixed height (px, %, etc), which is why the container here has a height. If both of these techniques are out, you could employ the “ghost element” technique, in which a full-height pseudo-element is placed inside the container and the text is vertically aligned with that.
.ghost-center < position: relative; >.ghost-center::before < content: " "; display: inline-block; height: 100%; width: 1%; vertical-align: middle; >.ghost-center p
Is it a block-level element? Do you know the height of the element? It’s fairly common to not know the height in web page layout, for lots of reasons: if the width changes, text reflow can change the height. Variance in the styling of text can change the height. Variance in the amount of text can change the height. Elements with a fixed aspect ratio, like images, can change height when resized. Etc. But if you do know the height, you can center vertically like:
Is the element of unknown height? It’s still possible to center it by nudging it up half of it’s height after bumping it down halfway:
Do you care if the element stretches the height of the container? If you don’t, you just need the content inside vertically centered, using tables or CSS display to make elements into tables can do the trick.
Both Horizontally & Vertically
You can combine the techniques above in any fashion to get perfectly centered elements. But I find this generally falls into three camps: Is the element of fixed width and height? Using negative margins equal to half of that width and height, after you’ve absolutely positioned it at 50% / 50% will center it with great cross-browser support:
Is the element of unknown width and height? If you don’t know the width or height, you can use the transform property and a negative translate of 50% in both directions (it is based on the current width/height of the element) to center:
Can you use flexbox? To center in both directions with flexbox, you need to use two centering properties:
Can you use grid? This is just a little trick (sent in by Lance Janssen) that will pretty much work for one element:
Psst! Create a DigitalOcean account and get $200 in free credit for cloud-based hosting and services.
Comments
Good idea! I like the concept of this article and also the show/hide structure. I applaud you, sir. However, I think you’re missing the spirit behind the classic “centering is hard” complaint in a couple of places, which, at least for me, always comes back to not knowing the height of the elements. 1) Your display: table-cell fix relies on knowing the height of the child element. 2) In your “is it block level” -> “is the element of unknown height” you proceed to give the parent an explicit height. To me, that defeats the purpose of trying to handle the unknown-height scenario. If I don’t know the height of the child, it’s quite common for me to also not know the height of the parent. 3) In your “both hor & vert example” where the height is unknown, it’s a little weird to have the child be pos: absolute and imply that this is no big deal. I think pos: absolute is a major caveat when laying things out, since it can have the unintended consequence of having elements layer over one another. 4) Also, in that same pen, the element fails to stay vertically centered if it has a sibling that stretches the vertical height of the parent. Regardless, I still really like the idea of this –it’s sorely needed. I just think it would be improved if you acknowledged some of the caveats that I think are at the root of the complaint you’re trying to dismiss.
1) It doesn’t actually. I updated the example to put the height on the table instead. 2) Vertical centering is only relevant if the parent has a set height. If the parent doesn’t have a set height, what are you centering within? Even if the answer is “the entire page”, then you need to set the height of (probably) both html, body 3) That’s fair. It’s just one example. In my experience, if you’re trying to center something both ways like that, it’s probably a modal, in which the absolute (or fixed) positioning is going to be used. If it’s not, you can combine any of the other techniques as needed. And there is always flexbox which I covered a bunch. 4) Demo me on this one? I’m having a hard time picturing/reproducing.
HTML/CSS. Как элементы тега body отобразить четко посередине?
Первый коммент жжет (ниже будет почему) .
Второй вообще устарел лет на 5 минимум.
В третьем тоже есть свои коры — типа атрибута align в теге — ну не рекомендуется по спецификации так делать.
CSS:
#wrapper <
margin: 0 auto;
width: 900px; — это просто ширина, задал от балды, у тебя может быть другая
>
Можно написать margin: 35px auto 48px; — как надо, главное чтобы слева и справа было auto. Это работает во всех браузерах, доля которых ныне выше 0.5%
Атрибут align в теге — как альтернативный вариант при вёрстке без использования таблиц. Проверка на валидность стандарту XHTML 1.0 ошибку не определяет (поскольку данный код валиден).
Strannik Мастер (2007) Серьезно? Альтернатива таблицам? А я уж думал, что альтернатива таблицам — это дивная верстка и css. Согласно последней спецификации, оформление и код должны быть разделены. Атрибут align — это оформление. Такие вещи уже давно пишутся через цсс и звучат как text-align. Это надо знать
Серьезно? Альтернатива таблицам? А я уж думал, что альтернатива таблицам — это дивная верстка и css. Согласно последней спецификации, оформление и код должны быть разделены. Атрибут align — это оформление. Такие вещи уже давно пишутся через цсс и звучат как text-align. Это надо знать
два контейнера, один в другом. Во внешнем — text-align:center, внутреннем — text-align:left, работает везде.
Один контейнер, margin-left:auto, margin-right-auto — не везде.
Set body in center html
Частная коллекция качественных материалов для тех, кто делает сайты
- Creativo.one2000+ уроков по фотошопу
- Фото-монстр300+ уроков для фотографов
- Видео-смайл200+ уроков по видеообработке
- Жизнь в стиле «Кайдзен» Техники и приемы для гармоничной и сбалансированной жизни
Изучив рубрику «CSS», вы узнаете, как с помощью каскадных таблиц стилей (CSS) можно легко управлять дизайном сайта и упростить создание самого сайта. Данная рубрика заменит Вам полноценный «учебник по CSS».
Бесплатные уроки CSS для начинающих
Вдобавок к текстовым урокам по каскадным таблицам стилей, в данном разделе также представлены полезные уроки CSS для начинающих. Все материалы изложены в максимально простой и понятной форме, поэтому даже абсолютный новичок сможет быстро освоить все премудрости создания красивого оформления сайтов.
Забавные эффекты для букв
Реализация забавных подсказок
Небольшой концепт забавных подсказок, которые реализованы на SVG и anime.js. Помимо особого стиля в примере реализована анимация и трансформация графических объектов.
Анимированные буквы
Солнцезащитные очки от первого лица
Прикольный эксперимент веб страницы отображение которой осуществляется “от первого лица” через солнцезащитные очки.