|
The @import property allows you to import a style sheet. For example: @import: url(mystyles.css); Put the @import tag at the beginning of a <style> block or a linked style sheet, before any style declarations. The browser applies rules in imported style sheets before the other rules you define for the containing style sheet. For example, if the imported style sheet set the colour of <h1> to green but you also set up a style for <h1> that sets the colour to blue, the <h1> tag would be blue. |
More information a:link, a:active and a:visited @import |