html - CSS - How to remove thin white line between :after element and blue border on hover on image -
this structure: <div class="parent"> <a href="#"> <p class="carousel_img"> <span class="img"></span> text </p> </a> , style: .parent{ height: 270px; width: 270px; } .img { background-image: url(http://frontendtest.ru/anit/img/ps_3.jpg); background-size: cover; display: block; height: 250px; overflow: hidden; border-radius: 50%; -webkit-transform: scale(1.3); -ms-transform: scale(1.3); transform: scale(1.3); -webkit-transition: -webkit-transform 0.3s; transition: -webkit-transform 0.3s; transition: transform 0.3s; transition: transform 0.3s, -webkit-transform 0.3s; background-repeat: no-repeat; } .carousel_img { border-radius: 50%; border: 4px solid #f6e9d6; height: 260px; width: 260px; overflow: hidden; -webkit-transform-style: preserve-3d; transform-style: preserve-3d; position: relative;