主页

 目录

01前端/CSS 阻止图片默认行为

  • 更新时间:2020-09-22 03:30
  • 创建时间:2020-09-22 03:30

默认浏览器会给图片加上拖拽和保存的行为,如果不想要可以用背景图,或者像下面这样在图片上叠一层。

1
2
3
4
5
6
7
8
9
10
11
.img-event-proxy {
position: relative;
&::after {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
content: "";
}
}
分享
上一篇
01前端/CSS 每列高度自适应父元素高度
下一篇
01前端/XML 转 JSON
© 2022 zhangjufeng
Powered by Hexo
京公网安备 11010802028993号   京ICP备2020046328号