Answers for "place a text to the center of a page using flex"

0

move text to center of page flexbox

// Assuming a horizontally centered row of items for the parent but it doesn't have to be
.parent {
  align-items: center;
  display: flex;
  justify-content: center;
}

.child {
  display: flex;
  align-items: center;
}
Posted by: Guest on April-15-2021
2

how center content in css by using flex

display: flex;
    width: 60%;
    justify-content: center;
    margin: 0 auto;
Posted by: Guest on November-02-2020

Code answers related to "place a text to the center of a page using flex"

Browse Popular Code Answers by Language