“встроенный центр блоков” Ответ

встроенный центр блоков

.parent {
  display: flex;
  justify-content: center;
  align-items: center;
}

.child {
  display: inline-block;
}
Selfish Swan

Как центрировать встроенный элемент блока

  display: inline-block;
  position: relative;
  /* Move the element to the right by 50% of the container's width */
  left: 50%; 
  /* Calculates 50% of the element's width, and moves it by that */ 
  /* amount across the X-axis to the left */
  transform: translateX(-50%);
Depressed Dove

Ответы похожие на “встроенный центр блоков”

Вопросы похожие на “встроенный центр блоков”

Больше похожих ответов на “встроенный центр блоков” по CSS

Смотреть популярные ответы по языку

Смотреть другие языки программирования