Quote:
Originally Posted by Jutlander
I believe the <style> tag will override an external stylesheet,
|
Not necessarily.
Presuming you mean
embedded CSS. (External CSS can be @imported via
style elements)...
It depends in which order you add the external stylesheet and embedded styles to the document.
If you add the external stylesheet
after the embedded styles, then the external stylesheet will win over the embedded rules whenever property conflicts occur.
If the embedded CSS comes after the external stylesheet in the markup, then the embedded CSS will win over whenever property conflicts occur.