how t center text vertically and horixontally in a p element code example
Example 1: align vertical center text div
display: flex;
align-items: center
Example 2: how to make the text vertically centered in css
/*attention, i used this code because i had to center a div with text in another div without text*/
div{
position: relative;
top: 25%;
bottom: 25%;
}