Embedded Styles: These have the second highest specificity. The CSS rules are contained within the <style type="text/css"> tag.
External Stylesheets:
There are two kinds:
- Linked external stylesheet
- This is loaded with <link rel="stylesheet" type="text/css" href="styles.css">
- Imported external stylesheet
- <style type="text/css"> @import url(styles.css);
@import url(style.css) screen, handheld; Imported styles have the lowest specificity.
No comments:
Post a Comment