+ 3
What's the better use external css or internal or inline ?
tell your opinion
11 Answers
+ 8
I really just do inline when I'm lazy and the project is sufficiently small. For other cases, external.
+ 24
External is better. It helps to keep HTML clean.
+ 10
external
+ 5
Probably depends on the project, but external is easier to follow and reusable across multiple pages or even different websites.
+ 4
I think that the best option is to use external css, because you make the code more readable.
+ 4
If the styling is pretty much unique to the page you are using, use internal. If it is not unique (if it will be used across multiple pages or sites) then you should use external.
+ 4
I think external css is very comfortable because we can modify the webpage from externally there is no change in html code
+ 4
I'm a fan of keeping things clean.
i.e. have separate files for html, css and js.
+ 3
external is pest
+ 3
it really depends on project but i prefer to use external because the code become more readable and you can better adjust bugs😉
+ 3
Paul Caron
A few of your codes seem to have a decent amount of internal CSS in them, just sayin’.