Styling <p>
hi,
could me understand how have different paragraph styles? have paragraphs left justification, different fonts, etc in same page. can style h1,2,3,4 etc cannot apply different <p>help</> tags
thanks in advance!
kevin
use css classes.
.text-left {
text-align:left;
font-family:georgia,'times new roman', times, serif;
}
.text-center {
text-align:center;
}
<p class="text-left">this left aligned</p>
<p class="text-center">this centered</p>
More discussions in Dreamweaver support forum
adobe
Comments
Post a Comment