Answers for "center anything horizontally and vertically in CSS"

CSS
0

center anything horizontally and vertically in CSS

.center {
  display: flex;
  align-items: center;
  justify-content: center;       
}
Posted by: Guest on April-26-2022
0

center anything horizontally and vertically in CSS

.center {
  display: flex;
  align-items: center;
  justify-content: center;       
}
Posted by: Guest on April-26-2022

Code answers related to "center anything horizontally and vertically in CSS"

Browse Popular Code Answers by Language