Slide 4.6: CSS how to ... (cont.)
Slide 5.1: CSS background
Home

CSS How to ... (Cont.)


Multiple Style Sheets
If some properties have been set for the same selector in different style sheets, the values will be inherited from the more specific style sheet. For example, an external style sheet has these properties for the h3 selector as the top code.
7.css
 h3 {
  color: red;
  text-align: left;
  font-size: 8pt
 }

And an internal style sheet has these properties for the h3 selector as the middle code. If the page with the internal style sheet also links to the external style sheet the properties for h3 will be the bottom code.
 h3 {
  text-align: right; 
  font-size: 20pt
 }

The color is inherited from the external style sheet and the text-alignment and the font-size is replaced by the internal style sheet.
 color: red; 
 text-align: right; 
 font-size: 20pt

Multiple Styles Will Cascade into One.
Style sheets allow style information to be specified in many ways such as inside a single HTML element, inside the <head> element, or in an external CSS file. Even multiple external style sheets can be referenced inside a single HTML document. What style will be used when there is more than one style specified? All the styles will “cascade” into a new “virtual” style sheet by the following rules, where number four has the highest priority:
  1. browser default
  2. external style sheet
  3. internal style sheet (inside the <head> tag)
  4. inline style (inside an HTML element)
So, an inline style (inside an HTML element) has the highest priority, which means that it will override a style declared inside the <head> tag, in an external style sheet, or in a browser (a default value).


Demonstration
The following demonstration shows how the script of HTML and CSS is displayed on the Web: