
源码:
<style>
* {
margin: 0;
padding: 0;
}
div {
position: relative;
width: 200px;
height: 50px;
line-height: 50px;
text-align: center;
border-bottom: 3px solid tomato;
}
div::after {
content: "";
position: absolute;
top: 19px;
left: 180px;
width: 10px;
height: 10px;
border-bottom: 1px solid gray;
border-right: 1px solid gray;
transform: rotate(45deg);
transition: all 0.3s;
}
div:hover::after {
transform: rotate(225deg);
}
</style>
<body>
<div>更多</div>
</body>
613

被折叠的 条评论
为什么被折叠?



