I need to center the a paragraf in the CSS. I also want the text to appear horizontial.
<section class="test">
<div class="test1">
<p class="result1"> SUCCESS </p11>
<p class="testnumber1"> TEST# </p12>
<p class="date1"> DATE </p13>
</div>
</section>
Here is the CSS
p.result1, p.result2 , p.result3, p.result4{
font-size:12px;
font-weight:900;
margin:auto;
}
Any idea?