雅虎香港 搜尋

搜尋結果

  1. 本網站提供了詳細的 CSS 語法教學,包括語法、套用方式、串連、繼承、選擇器等基礎概念,以及常用的 CSS 屬性和樣式。適合想要自己設計網站或部落格的人士參考。

    • 語法

      在以上的宣告內,color 是屬性,而 yellow 是設定值。 在某 ...

    • 套用方式

      CSS 教學 > CSS 套用方式 我們可以用以下四種方式,將 ...

    • 串連

      CSS 教學 > 串接 CSS 的全名為 Cascading Style Sheets ...

    • 繼承

      CSS 語法 CSS 套用方式 CSS 媒體類別 CSS 串接 CSS 繼承 ...

    • Class 與 ID 選擇器

      CSS 教學 > CSS Class 與 CSS ID 在 CSS 語法那一頁中, ...

    • div 與 span 選擇器

      解釋 CSS 中的 DIV 與 SPAN 標籤,以及這兩者之間的不同。 ...

    • CSS 樣式

      CSS 教學 > CSS 樣式 這一頁將依照字母順序,來列出所有 ...

    • CSS 滑鼠游標圖案

      CSS 教學 > 滑鼠游標圖案 在某些網站上,我們會看到不同 ...

    • Overview
    • CSS 宣告
    • CSS 宣告區塊
    • CSS rulesets
    • CSS statements
    • See also

    串接式樣式表 (CSS) 語言的基礎目標是是讓瀏覽器引擎用特定的功能將元素寫在頁面上,像是顏色、位置與裝飾。CSS 語法反映出了目的,而它的基本組成為:

    •屬性為人可閱讀的識別碼,定義使用哪項功能。

    設定特定參數值給 CSS 屬性是 CSS 語言的核心功能。一對屬性與參數叫做宣告,而為了適當的排版與套用樣式,任何 CSS 引擎會演算每個頁面上的元素該套用哪個宣告。

    在 CSS 中屬性與參數都預設為不區分大小寫。它們由冒號區隔,':' (U+003A COLON),而在屬性與參數前、中間與後面並不需要有空白,空白會被忽略。

    Declarations are grouped in blocks, that is in a structure delimited by an opening brace, '{' (U+007B LEFT CURLY BRACKET), and a closing one, '}' (U+007D RIGHT CURLY BRACKET). Blocks sometimes can be nested, so opening and closing braces must be matched.

    Such blocks are naturally called declaration blocks and declarations inside them are separated by a semi-colon, ';' (U+003B SEMICOLON). A declaration block may be empty, that is containing null declaration. White spaces around declarations are ignored. The last declaration of a block doesn't need to be terminated by a semi-colon, though it is often considered good style to do it as it prevents forgetting to add it when extending the block with another declaration.

    If style sheets could only apply a declaration to each element of a Web page, they would be pretty useless. The real goal is to apply different declarations to different parts of the document.

    CSS allows this by associating conditions with declarations blocks. Each (valid) declaration block is preceded by one or more comma-separated selectors which are conditions selecting some elements of the page. The pair selector group-declarations block is called a ruleset, or often simply a rule.

    Rulesets are the main building blocks of a style sheet, which often consists of only a big list of them. But there is other information that a Web author wants to convey in the style sheet, like the character set, other external style sheets to import, font face or list counter descriptions and many more. It will use other and specific kinds of statements to do that.

    A statement is a building block that begins with any non-space characters and ends at the first closing brace or semi-colon (outside a string, non-escaped and not included into another {}, () or [] pair).

    There are two kinds of statements:

    •Rulesets (or rules) that, as seen, associate a collection of CSS declarations to a condition described by a selector.

    •At-rules that start with an at sign, '@' (U+0040 COMMERCIAL AT), followed by an identifier and then continuing up the end of the statement, that is up to the next semi-colon (;) outside of a block, or the end of the next block. Each type of at-rules (en-US), defined by the identifier, may have its own internal syntax, and semantics of course. They are used to convey meta-data information (like @charset (en-US) or @import (en-US)), conditional information (like @media (en-US) or @document (en-US)), or descriptive information (like @font-face).

    Any statement which isn't a ruleset or an at-rule is invalid and ignored.

    •CSS 重要概念:

    CSS 語法

    •@ 規則 (en-US)

    •註釋 (en-US)

    •優先級 (en-US)

    •繼承

  2. 這個網頁介紹了 CSS 的基本概念,如何在 HTML 文件中套用樣式,以及不同類型的選擇器。你可以學習如何用 CSS 改變文字、背景、邊框等元素的呈現樣貌。

    • css 語法1
    • css 語法2
    • css 語法3
    • css 語法4
    • css 語法5
  3. 2024年3月25日 · CSS 是 “Cascading Style Sheets的縮寫中文譯為層疊樣式表”。. CSS 是一種標記語言,它的主要功能是為結構化文件(如 HTML 文件或 XML 應用)添加風格(字體、間距和顏色等)。. 網頁設計,仰賴 HTML 和 CSS 兩種不同的語言。. HTML 處理內容,CSS 則定義內容呈現 ...

  4. CSS Syntax 教學如何正確撰寫 CSS 語法讓設計更簡潔. 當我們談到 網頁設計 和 前端開發 時,CSS(層疊樣式表)是不可或缺的重要元素之一。. CSS 可以幫助設計師和開發者制定網頁的佈局、顏色方案和各種樣式。. 然而,正確並且有效地撰寫 CSS 語法,不僅可以 ...

  5. CSS 語法. CSS 是一種基於規則的語言,你對網頁裡特定或一群元素指定一系列的規則。 舉例來說:「我要讓頁面裡的主標題,以紅色且大號的字體呈現」。 下面這段語法是為了實現上面的需求,用簡單 CSS 規則示範: css. h1 { color: red; font-size: 5em; } 樣式規則以一個 選擇器 開始。 它 選擇 了你預計改變樣式的 HTML 元素。 在這個例子中,我們要調整的是第一級的標題元素(<h1>)。 接著我們跟著一組花括號 { },裡面是一到多個 聲明,它的形式是一對一對 屬性名稱 和 屬性內容 的組合。 每一對聲明會將我們選中元素的屬性,付予我們所想要設定的內容(或數值)。 在冒號(:)前面的是屬性的名稱,後面的是屬性內容(值)。

  6. CSS 语法. CSS 简介. CSS 选择器. CSS 规则集(rule-set)由选择器和声明块组成:. 选择器指向您需要设置样式的 HTML 元素。. 声明块包含一条或多条用分号分隔的声明。. 每条声明都包含一个 CSS 属性名称和一个值,以冒号分隔。. 多条 CSS 声明用分号分隔,声明块用花 ...

  1. 其他人也搜尋了