0
Is there any attribute that can be written in <p> the paragraph tag?
4 Answers
+ 1
title, class, id, align (deprecated)
+ 1
use CSS
p {
text-align: center;
}
the purpose is that taking full styling control of html by css
+ 1
Cool. Thanks.
0
If align is deprecated, how do we align text in html5?