8

Doing some html horizontal center stuff, I just realized that I could use both things to center a box element into its parent, so my question is which of those 2 are better (in terms of performance, usability, etc).

Boaz
  • 19,892
  • 8
  • 62
  • 70
DevStarlight
  • 784
  • 12
  • 29
  • How would one even compare the two by those metrics (performance and usability)? What do they even *mean* in this context? – BoltClock Dec 07 '14 at 14:37
  • with usability I wanted to ask what is the most common way you use to center an element into its parent. About performance I wanted to know if there were loading differences when the DOM was rendering the layout – DevStarlight Dec 07 '14 at 14:41

2 Answers2

3

Because of the way margins are handled in flex, these do the same job.

But as a general practice, when you have more div's, using flex would do the job more accurately and will provide you choice for distributing the space equally". When you have few div' , you can go with margin:auto . Remember flexbox provides us the choice for redistributing the space.

Aakash Sr
  • 41
  • 1
  • 6
2

If you use div or p it's better to use margin: 0px auto; for containers or main page, But if you need two or more children to be centered, it's better to set parent to text-align:center and the children to display: inline-block.

Boaz
  • 19,892
  • 8
  • 62
  • 70
Gega Gagua
  • 92
  • 9