I am sure it's an interesting question,
What would be better?
for example:
to align a paragraph to the right you can HTML:
<p align="right"> blah blah blah </p>
or you can CSS:
<p style="text-align: right;">
I don't know what's best (by best I mean faster or with more advantages etc.)
My guess is it doesn't matter if you use external CSS but if you use the style attribute maybe it's faster because you don't need to approach any other file (if you use the HTML you will approach html.css which for firefox for example you can find in Mozilla Firefox\res\html.css)
What's your opinion?
What would be better?
for example:
to align a paragraph to the right you can HTML:
<p align="right"> blah blah blah </p>
or you can CSS:
<p style="text-align: right;">
I don't know what's best (by best I mean faster or with more advantages etc.)
My guess is it doesn't matter if you use external CSS but if you use the style attribute maybe it's faster because you don't need to approach any other file (if you use the HTML you will approach html.css which for firefox for example you can find in Mozilla Firefox\res\html.css)
What's your opinion?