瞭解CSS定義

來源:互聯網
上載者:User
一、CSS的定義
  定義CSS樣式的方法多種。
方法1,在<head>…</head>中定義,如下邊的CSS.<head runat="server">
    <style type="text/css">
        body 
        {
            font-family:verdana, sans-serif;
            font-size:small;
        }
    <title>未命名頁面</title>
</head>

方法二,在<body>...</body>中直接用style定義,如下邊的CSS<td style="position: absolute" width="100%">

方法三,把編輯好的CSS文檔儲存成“.CSS”檔案,然後在<head>中定義。定義的格式如下 <link rel=stylesheet href=“CSS檔案”>

    說明:
        “rel=stylesheet”指串連的元素是一個樣式表(stylesheet)文檔。這裡是不需要變更。
        href=‘style.css’為指定CSS檔案。
如下邊代碼:<head runat="server">
    <link rel="stylesheet" href="style.css" />
</head>

二、class和id的用法
    在CSS中定義ID以“#”開頭;定義Class以“.”開頭。
    定義格式分別為: 指定標籤.類名 {屬性:屬性值}
 .類名 {屬性:屬性值}
 .類名 指定標籤 {屬性:屬性值}

 指定標籤#類名 {屬性:屬性值}
 #類名 {屬性:屬性值}
 #類名 指定標籤 {屬性:屬性值}

  如下邊代碼:    <style type="text/css">

        #navigation li
        {
            margin-left:1px;
            width:120px;
        }
        
        .my_sytle 
        {
          width:120px;
        }
    </style>

    Class與ID區別:
    class和id看上去區別僅僅是“.”和“#”,他們最大的區別在於:id選擇符在每個頁面只能使用一次,它是唯一的,而class可以隨意無限次使用。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.