CSS定位二:空間定位

來源:互聯網
上載者:User
css 在這一節裡,我們來看一個利用z-index定位的例子,這個例子的效果 在這裡
  我們看到例子中的兩幅圖片和一段文字分別處於不同的空間位置,文字覆蓋在那朵花的圖片上,而揮動小旗的小老鼠卻又覆蓋在文字的上面。那麼這種效果是怎樣實現的呢?這裡利用了CSS定位的z-index屬性,代碼如下:

  <html>
    <head>
    <title>zindex</title>
    <style type=“text/css”>
    <!--                   
    .pile{position:absolute;left:2in;top:2in;
    width:3in;height:3in;}//*定義了類pile,以及它的位置*//
    .pile1{position:absolute;left:3in;top:2in;
    width:1in;height:1in;} //*定義了類pile1,以及它的位置*//
    -->
    </style>
    </head>
    <body>
    <img src="/UploadPic/2007-4/200741181926273.jpg"” class=“pile” id=“image”
     style=“z-index:1”>
     //*匯入一張圖片,使它為pile類,z-index屬性定義為1,位置處於最下方
      *//
    <div class=“pile” id=“text1”
    style=“color:#ffff33;z-index:2” > 這段文字將覆蓋在圖片上。
    </div>//*定義一段文字的顏色和z-index屬性為2,處於中間位置*//
    <img src="/UploadPic/2007-4/200741181927569.gif"” class=“pile1” id=“image”
    style=“z-index:3”>
     //*匯入第二張圖片,使它為“pile1”類,z-index屬性為3,位置處於最上
      方*//
    </body>
  </html>

  通過這兩節的例子,我們可以看到CSS定位具有強大的功能,至於其他的一些定位屬性,您可以自己嘗試一下,很簡單的。
  利用好了CSS的定位功能,會使您的頁面更加精緻,更加富有動感。
  下一章我將帶您進入CSS濾鏡的精彩世界



相關文章

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.