Answers for "content center in css"

CSS
10

css center

/* this will center all children within the parent element. */
.parent {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center; /* vertical */
}
Posted by: Guest on May-17-2020
0

css center alignment

.center {
  text-align: center;
  border: 3px solid green;
}
Posted by: Guest on April-06-2021
6

center align css

text-align: center;
Posted by: Guest on July-28-2020
-1

center in css

.center {
    margin: auto;
}
Posted by: Guest on May-29-2021

Browse Popular Code Answers by Language