zoukankan      html  css  js  c++  java
  • 完美的背景图全屏css代码 – background-size:cover?

    html部分      <div class="bg"></div>

    css部分

    .bg{position: fixed;top: 0;left: 0; 100%;height: 100%;background: url(bg.jpg) no-repeat #000;background-size: cover;z-index: -1;}

    如果图片宽度没有达到1900px以上,我会加上ie的滤镜来支持ie8

    1. -ms-filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='.http://huilang.me/bg.jpg', sizingMethod='scale')";
    2. filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://huilang.me/bg.jpg', sizingMethod='scale');
  • 相关阅读:
    内置方法(item系列、__str__方法、__del__方法)
    POJ3436
    CF551B
    HDU1588
    HDU3117
    CF834D
    CF832D
    CF832C
    POJ1930
    POJ3666
  • 原文地址:https://www.cnblogs.com/dingdingSmile/p/7742592.html
Copyright © 2011-2022 走看看