Answers for "how to center three inline block elements"

0

how to center three inline block elements

text-align: center; on the parent element
Posted by: Guest on February-16-2022
-1

how to center a inline block element

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%);
Posted by: Guest on December-23-2021

Browse Popular Code Answers by Language