Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #move #text #center #page #flexbox
ADD COMMENT
Topic
Name
5+5 =