What You Should Already Know Before you continue you should have some basic understanding of the following: 在繼續(xù)前你應(yīng)該具備相關(guān)的基礎(chǔ)知識(shí):HTML / XHTML
What is CSS? 什么是CSS? CSS stands for Cascading Style Sheets Styles define how to display HTML elements Styles are normally stored in Style Sheets Styles were added to HTML 4.0 to solve a problem External Style Sheets can save you a lot of work External Style Sheets are stored in CSS files Multiple style definitions will cascade into one
HTML tags were originally designed to define the content of a document. They were supposed to say "This is a header", "This is a paragraph", "This is a table", by using tags like <h1>, <p>, <table>, and so on. The layout of the document was supposed to be taken care of by the browser, without using any formatting tags. As the two major browsers - Netscape and Internet Explorer - continued to add new HTML tags and attributes (like the <font> tag and the color attribute) to the original HTML specification, it became more and more difficult to create Web sites where the content of HTML documents was clearly separated from the document's presentation layout. To solve this problem, the World Wide Web Consortium (W3C) - the non profit, standard setting consortium, responsible for standardizing HTML - created STYLES in addition to HTML 4.0. All major browsers support Cascading Style Sheets.
Styles sheets define HOW HTML elements are to be displayed, just like the font tag and the color attribute in HTML 3.2. Styles are normally saved in external .css files. External style sheets enable you to change the appearance and layout of all the pages in your Web, just by editing one single CSS document! CSS is a breakthrough in Web design because it allows developers to control the style and layout of multiple Web pages all at once. As a Web developer you can define a style for each HTML element and apply it to as many Web pages as you want. To make a global change, simply change the style, and all elements in the Web are updated automatically.
Style sheets allow style information to be specified in many ways. Styles can be specified inside a single HTML element, inside the <head> element of an HTML page, or in an external CSS file. Even multiple external style sheets can be referenced inside a single HTML document. 樣式表答應(yīng)樣式信息用多種方式來定義.樣式可以在一單獨(dú)的HTML元素中指定,在<head>元素中或在一外部CSS文件中.甚至多個(gè)外部樣表能集中在一個(gè)單一的HTML文檔中
Cascading order
What style will be used when there is more than one style specified for an HTML element? 當(dāng)多于一種的樣式指定一HTML元素時(shí)使用怎樣的樣式呢?
Generally speaking we can say that all the styles will "cascade" into a new "virtual" style sheet by the following rules, where number four has the highest priority: 一般說來所有樣式有下面的規(guī)則(第四個(gè)最有優(yōu)先性)
Browser default 瀏覽器默認(rèn) External style sheet 外部樣式表 Internal style sheet (inside the <head> tag) 內(nèi)嵌樣式表(在<head>標(biāo)簽內(nèi)) Inline style (inside an HTML element) 行內(nèi)樣式(在一HTML元素內(nèi)) 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). 所以寫在HTML元素中的樣式有最高的優(yōu)先權(quán)(寫在HTML元素內(nèi)的),它會(huì)替代其他形式的樣式.