css3因旋转出现的锯齿应该如何解决

2024年12月06日 建站教程

css3旋转出现的锯齿应该如何解决,下面web建站小编给大家详细介绍一下解决方法!

利用元素外层容器的overflow:hidden; 加上元素margin:-1px,具体代码如下:

.container {
  position: relative;
  overflow: hidden;
}
.box {
  margin: -1px;
  width: 200px;
  height: 200px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

本文链接:http://so.lmcjl.com/news/19068/

展开阅读全文
相关内容