Answers for "css text-align center"

4

center text css

p {
  text-align: center;
}
Posted by: Guest on January-03-2021
1

css how to center text

/* Using flex to center anything*/
.parent{
  display: flex;
  justify-content: center; /* Centering Horizantly */
  align-items: center; /* Centering Vertically */
  /* Every element inside this div will be centered*/
}
/* Using Line Height*/
.main-div{
  width: 50%;
  height: 40px;
}
.main-div p{
  line-height: 40px; /* Same as parent height*/
  /* p will be centered vertically inside its parent div*/
}
/* CSS Property */
p{
  text-align: center;
}
Posted by: Guest on June-12-2021
2

css text align right

body {
  text-align: right;
}
Posted by: Guest on April-09-2020
2

text-align css

.p{
text-align:center;
}
<div class="p">
<p style="text-align:center">HELLO</p>
</div>
Posted by: Guest on March-14-2021
0

center a text css

.center {
  text-align: center;
  
border: 3px solid green;
}
Posted by: Guest on August-26-2021

Browse Popular Code Answers by Language