Skip to main content
adding code snippet
Source Link
iorgu
  • 3.2k
  • 3
  • 21
  • 39

Flex have more than 97% browser support coverage and might be the best way to solve these kind of problems within few lines:

#outer {
  display: flex;
  justify-content: center;
}

#outer {
  display: flex;
  justify-content: center;
}
<div id="outer">
  <div id="inner">Foo foo</div>
</div>

Flex have more than 97% browser support coverage and might be the best way to solve these kind of problems within few lines:

#outer {
  display: flex;
  justify-content: center;
}

Flex have more than 97% browser support coverage and might be the best way to solve these kind of problems within few lines:

#outer {
  display: flex;
  justify-content: center;
}
<div id="outer">
  <div id="inner">Foo foo</div>
</div>

deleted 3 characters in body
Source Link

Flex have more than 97% browser support coverage and might be the best way to solve these kind of problems within few lines:

#outer {
  display: flex;
  justify-content: center;
}
#outer {
  display: flex;
  justify-content: center;
}

Flex have more than 97% browser support coverage and might be the best way to solve these kind of problems within few lines:

#outer {
  display: flex;
  justify-content: center;
}

Flex have more than 97% browser support coverage and might be the best way to solve these kind of problems within few lines:

#outer {
  display: flex;
  justify-content: center;
}
Active reading.
Source Link
Peter Mortensen
  • 31.4k
  • 22
  • 110
  • 134

Flex have more than 97% browser support coverage, and might be the best way to solve these kind of problems within few lines:

#outer {
  display: flex;
  justify-content: center;
}

Flex have more than 97% browser support coverage, and might be the best way to solve these kind of problems within few lines:

#outer {
  display: flex;
  justify-content: center;
}

Flex have more than 97% browser support coverage and might be the best way to solve these kind of problems within few lines:

#outer {
  display: flex;
  justify-content: center;
}
Source Link
Loading
Post Made Community Wiki by Sandesh Damkondwar