怎么插入图片、改变图片的大小、透明度

怎么插入图片、改变图片的大小、透明度?

插入图片2种方式:

  • style样式中 backgrund
    background:url("imgs/1.jpg") no repeat 20% 30%;或者no-repeat center center
    前一个参数表水平,第二个参数表垂直f12直接调试
  • img标签
    <img src="imgs/1.jpg" width="" height="" alt="美女">

改变图片大小:

background-size:300 900;

怎么改变透明度?

透明度是改变不了了,只能通过改变父容器的
opacity:0.5来change

You can change the world with your heart,even a lot of changes sometimes unless you won't geiv up....
原文地址:https://www.cnblogs.com/xiongwei2017/p/6583918.html