国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > CSS > 正文

CSS規(guī)則的結(jié)構(gòu)和Grouping、class和id

2024-07-11 08:24:53
字體:
供稿:網(wǎng)友
2.1 規(guī)則的結(jié)構(gòu)<rules>::=<selector> <左括號><declarations><右括號><declarations>::= <declaration>{<SEMICOLON><declaration>}[SEMICOLON]<SEMICOLON>::=分號<declaration>::=<property><COLON><value><COLON>::=冒號<value>::=<keyword list><keyword list>::=<keyword>{<SPACE><keyword>}<SPACE>::=空格通常會用空格做為value之間的分隔符,有個例外:As we've seen, CSS keywords are separated by spaces—except in one instance. In the CSS property font, there is exactly one place where a forward-slash (/) can be used to separate two specific keywords. Here's an example:h2 {font: large/150% sans-serif;}The slash separates the keywords that set the element's font size and line height. This is the only place the slash is allowed to appear in the font declaration. All of the other keywords allowed for font are separated by spaces.2.1.1selectorselector: defines which piece of the document will be affected.Selector通常是html元素,也可能是xml中允許任何元素。2.1.2 Declarations and Keywords2.2 Grouping2.2.1 grouping selectors將多個元素共用一個style,例子:
/* group 1 */h1 {color: silver; background: white;}h2 {color: silver; background: gray;}h3 {color: white; background: gray;}h4 {color: silver; background: white;}b {color: gray; background: white;}/* group 2 */h1, h2, h4 {color: silver;}h2, h3 {background: gray;}h1, h4, b {background: white;}h3 {color: white;}b {color: gray;}/* group 3 */h1, h4 {color: silver; background: white;}h2 {color: silver;}h3 {color: white;}h2, h3 {background: gray;}b {color: gray; background: white;}2.2.1.1 The universal selector* {color: red;}2.2.2 grouping declarations例子:h1 {font: 18px Helvetica;}h1 {color: purple;}h1 {background: aqua;}h1 {font: 18px Helvetica;color: purple;background: aqua;}If the second semicolon is omitted, however, the user agent will interpret the style sheet as follows:h1 {font: 18px Helvetica; color: purplebackground: aqua;}Since background: is not a valid value for color, and also since color can be given only one keyword, a user agent will ignore the color declaration (including the background: aqua part) entirely. It might render h1s as purple text without an aqua background, but more likely, you won't even get purple h1s. Instead, they'll be the default color (usually black) with no background at all. (The declaration font: 18px Helvetica will still take effect since it was correctly terminated with a semicolon.)2.2.3 Grouping Everything就是同時group selector和declarationh1, h2, h3, h4, h5, h6 {color: gray; background: white; padding: 0.5em;border: 1px solid black;}You've grouped the selectors, so the styles on the right side of the rule will be applied to all the headings listed, and grouping the declarations means that all of the listed styles will be applied to the selectors on the left side of the rule. 2.3 class and id selectors最簡單的selector是只針對文檔元素的element selecoter,還有兩種selecotrs:class selectors和id selectors。這兩種selector可以獨立于文檔元素的,即不是于具體某個的文檔元素直接關(guān)聯(lián)的。這兩種selecoter可以單獨使用,也可以和element selector一起使用。但是這兩種selector的使用需要配合文檔編寫的規(guī)范性。比如寫一個討論plutonium處理方式的文檔,文檔由很多段組成,包含很多警告信息,希望將警告的字體置為bold,以突出顯示。但是這些警告信息的格式很多,一段文字,列表式,一小節(jié)文本等。所以不能通過p {font-weight: bold;}的形式來定義。這樣無法從全是文本的整個文檔中找到警告信息,并加粗。因此,解決方式:使用class selectors給警告信息的部分加上標記。
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 故城县| 常州市| 葵青区| 磐石市| 永定县| 颍上县| 慈溪市| 井陉县| 桦甸市| 鄂尔多斯市| 新闻| 石家庄市| 长岭县| 延边| 荣成市| 宁安市| 藁城市| 高青县| 洛扎县| 安阳县| 米易县| 循化| 莎车县| 西丰县| 永春县| 资溪县| 南昌县| 淮南市| 岢岚县| 鲜城| 青岛市| 马边| 临海市| 昌江| 沾化县| 迁安市| 永善县| 曲麻莱县| 芮城县| 高淳县| 迁安市|