+ 2
how do i align the paragraph to the middle of the div? code is in the description.
HTML: <div><p></p></div> CSS: div { height: 500px; background-color: blue; } p { height: 100px; background-color: black; }
3 Answers
+ 5
Change CSS
div {
display: table-cell;
height: 300px;
width: 300px;
background-color: #e3e3e3;
margin: auto auto;
text-align: center;
vertical-align: middle;
}
+ 1
just out margin auto for the <p>. that should do it. or text align center/justify.
0
Hi, can anyone help me please