0
In HTML5 would it be better to add an attribute to a tag or use CSS?
Example: <p text-align: "center"> vs. Using CSS to do the same thing.
3 Antworten
+ 3
Use CSS
+ 1
If you want to keep your HTML as clean as possible use CSS.
0
Did you mean
<p style="text-align: center;">
?