CSS – 背景圖片展開的方法

來源:互聯網
上載者:User

css中能個添加背景圖片background:url(“”);但是這裡只能指定no-repeat或者repeat-x,repeat-y這些平鋪的方式.
如果我們想要圖片是展開的,我們該怎麼辦呢?方法有兩個:

  1. style="filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='', sizingMethod='scale')";但是這個濾鏡只對IE有效.
  2. 我們可以選擇在底下一個層放一個img(這個img是可以展開的),然後上面一層放我們的內容.
   1: <div><img src="圖片地址" width="100%"></div>

   2: <div style="position:absolute; top:0px;left:0px; width:100%">

   3:     我們的內容    

   4: </div>

本人有限,暫時只能想到這樣的方法了.

相關文章

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.