【发布时间】:2021-07-10 08:33:43
【问题描述】:
边框应该像菱形一样旋转,但 div 元素内的图像不应该旋转。我附上了图片和代码。请通过并帮助我。
对我来说,图像也在旋转。
<!--HTML CODE-->
<div class="section-1">
<div class="support-sec-img">
<img src="images\free-support.png" alt="">
</div>
</div>
/* CSS CODE */
.support-sec-img {
border: 1px solid #e5e5e5;
width: 73px;
height: 73px;
margin: auto;
display: flex;
justify-content: center;
align-items: center;
}
.section-1:hover .support-sec-img {
transform: rotate(-45deg);
border: 1px solid #e95c4e;
}
【问题讨论】: