中文字幕在线一区二区在线,久久久精品免费观看国产,无码日日模日日碰夜夜爽,天堂av在线最新版在线,日韩美精品无码一本二本三本,麻豆精品三级国产国语,精品无码AⅤ片,国产区在线观看视频

      教程css英文語法

      時間:2024-10-03 21:03:56 CSS 我要投稿
      • 相關推薦

      教程css英文語法

        Syntax

        The CSS syntax is made up of three parts: a selector, a property and a value:

        selector {property:value}

        The selector is normally the HTML element/tag you wish to define, the property is the attribute you wish to change, and each property can take a value. The property and value are separated by a colon, and surrounded by curly braces:

        body {color:black}

        Note: If the value is multiple words, put quotes around the value:

        p {font-family:"sans serif"}

        Note: If you want to specify more than one property, you must separate each property with a semicolon. The example below shows how to define a center aligned paragraph, with a red text color:

        p {text-align:center;color:red}

        To make the style definitions more readable, you can describe one property on each line, like this:

        p

        {

        text-align:center;

        color:black;

        font-family:arial

        }

        Grouping

        You can group selectors. Separate each selector with a comma. In the example below we have grouped all the header elements. All header elements will be displayed in green text color:

        h1,h2,h3,h4,h5,h6

        {

        color:green

        }

        The class Selector

        With the class selector you can define different styles for the same type of HTML element.

        Say that you would like to have two types of paragraphs in your document: one right-aligned paragraph, and one center-aligned paragraph. Here is how you can do it with styles:

        p.right {text-align:right}

        p.center {text-align:center}

        You have to use the class attribute in your HTML document:

        This paragraph will be right-aligned.

        This paragraph will be center-aligned.

        Note: To apply more than one class per given element, the syntax is:

        This is a paragraph.

        The paragraph above will be styled by the class "center" AND the class "bold".

        You can also omit the tag name in the selector to define a style that will be used by all HTML elements that have a certain class. In the example below, all HTML elements with class="center" will be center-aligned:

        .center {text-align:center}

        In the code below both the h1 element and the p element have class="center". This means that both elements will follow the rules in the ".center" selector:

        This heading will be center-aligned

        This paragraph will also be center-aligned.

        Do NOT start a class name with a number! This is only supported in Internet Explorer.

        Add Styles to Elements with Particular Attributes

        You can also apply styles to HTML elements with particular attributes.

        The style rule below will match all input elements that have a type attribute with a value of "text":

        input[type="text"] {background-color:blue}

        The id Selector

        You can also define styles for HTML elements with the id selector. The id selector is defined as a #.

        The style rule below will match the element that has an id attribute with a value of "green":

        #green {color:green}

        The style rule below will match the p element that has an id with a value of "para1":

        p#para1

        {

        text-align:center;

        color:red

        }

        Do NOT start an ID name with a number! It will not work in Mozilla/Firefox.

        CSS Comments

        Comments are used to explain your code, and may help you when you edit the source code at a later date. A comment will be ignored by browsers. A CSS comment begins with "/*", and ends with "*/", like this:

        /*This is a comment*/

        p

        {

        text-align:center;

        /*This is another comment*/

        color:black;

        font-family:arial

        }

      【教程css英文語法】相關文章:

      css屬性定位教程07-23

      CSS入門教程01-25

      CSS閉合浮動元素教程06-26

      CSS選擇器教程06-05

      CSS教程之盒模型10-17

      日語的態語法教程06-30

      關于CSS教程:復合型條狀圖表01-25

      丹麥語語法教程08-23

      CSS基礎教程之背景圖片07-31

      CSS-層疊樣式表基礎教程08-10

      主站蜘蛛池模板: 国产精品亚洲一区二区三区正片 | 亚洲精品国产精品av| 中文字幕在线视频不卡一区二区| 91久久精品国产性色tv| 久久99久久99精品免观看女同 | 久久婷婷国产五月综合色| 国产成人精品久久亚洲高清 | 国产成人一区二区三区视频免费蜜 | 国产精品黄片一区二区三区视频 | 一区二区三区四区亚洲天堂| 亚洲AⅤ乱码一区二区三区| 青青青伊人色综合久久亚洲综合| 新沂市| 利川市| 秭归县| 全南县| 怀柔区| 国产精品亚洲一区二区毛片| 富顺县| 乐平市| 日本高清在线播放一区二区三区| 友谊县| 亚洲午夜久久久久中文字幕久| 久久久精品中文无码字幕| 国产成人精品自拍视频| 亚洲国产一区久久yourpan| 99亚洲乱人伦精品| 狠狠一本天堂亚洲综合十八禁| 欧美丝袜激情办公室在线观看| 无码一区二区三区网站| 日本国产一区二区三区在线观看| 日韩av免费在线不卡一区| 国产精品亚洲一区二区三区| 日本成熟妇人高潮aⅴ| 亚洲高清国产品国语在线观看| 亚洲av有码精品天堂| 久久综合激激的五月天| 亚洲欧洲AV综合色无码| 精品一区二区三区在线观看l| 亚洲大片免费播放地址| 日本一区二区久久精品亚洲中文无|