Answers for "e flexbox to center the block horizontally."

CSS
5

centering with flexbox

/* HORIZONTAL */
justify-content: center;

/* VERTICAL */
align-items: center;
Posted by: Guest on October-10-2020
1

how to align a flex container center

.table-wrapper {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  margin: 0 auto;
}
Posted by: Guest on April-08-2021

Code answers related to "e flexbox to center the block horizontally."

Browse Popular Code Answers by Language