为什么我不能增加添加到图像的背景大小?

时间:2016-11-07 17:37:17

标签: css

我有一个透明的背景图片,我想为它的背景添加灰色,我做了但是我不能将它的宽度扩展到整个页面的宽度(换句话说,即使使用background-size属性,我也无法改变其大小。)



img{
  height:40px;
  width:40px;
  background-color:rgb(0, 0, 0);
  background-size:100px 100px;
}

<img src="https://www.google.co.in/search?espv=2&biw=1366&bih=662&tbm=isch&sa=1&q=html+logo+transparent+background&oq=html+logo+tra&gs_l=img.1.1.0j0i30k1.3420.4038.0.5941.4.4.0.0.0.0.302.302.3-1.1.0....0...1c.1.64.img..3.1.301.xRQ23nL94iw#imgrc=FkYJhNmbMb325M%3A" align="center">
&#13;
&#13;
&#13;

2 个答案:

答案 0 :(得分:1)

在父div中使用背景图像

    <style>
      .parent {
          width: 100%;
          background-image:url('yourimage.jpg');
          background-position: center center;
          background-color: grey;
        }
    </style>

    <div class="parent">

    </div>

答案 1 :(得分:0)

更改高度和宽度

   def yourViewFunc(request, patientId, patientName):
       # your logic goes here
       pass