我这个关闭按钮的边框和那个叉叉都会有模糊要怎么解决
<p class="popmidbox">
<p class="icon_close"></p>
</p>
.popmidbox{
width:300px; height: 200px;border: 1px solid #ccc;margin: 100px auto;position: relative;
}
.icon_close{
width: 16px;height: 16px;border-radius: 50%;border:1px solid #CCC;background: #fff;
padding: 5px;position:absolute;top: -12px;right: -12px;z-index: 2;
}
.icon_close::before{
content:"";transform: rotate(-45deg);-webkit-transform: rotate(-45deg);
width: 1px;height: 17px;background: #ccc;overflow: hidden;position: absolute;
top:5px;left: 13px;
}
.icon_close::after{
content:"";transform: rotate(45deg);-webkit-transform: rotate(45deg);
width: 1px;height: 17px;background: #ccc;overflow: hidden;position: absolute;
top:5px;right: 13px;
}
Yours looks so high-end (and also very complicated).
It feels easier to draw the border using SVG now.
Right and bottom borders
http://codepen.io/charleyw/pen/qbqgQR
You can try setting all elements in
.icon_close
to double size, and then use.icon_close
to reduce the size by half.tranform: scale(0.5)
Some devices with low performance or too few performance allocation resources will behave like this.
Forcing hardware rendering to be triggered in 3D may be solved.