CSS 1.css介绍 css指的是层叠样式表(cascading style sheets) 官方文档:https://www.w3school.com.cn/css/index.asp为什么需要c
顺晟科技
2021-10-01 14:26:32
153
/* <div class="text">header</div> */
.text {
/* 作用元素 */
display: inline-block;
position: relative;
padding: 10px 0;
}
.text:after {
/* 下划线伪元素 */
display: block;
content: \'\';
/* 控制下划线动画起始位置 */
position: absolute;
left: 0;
right: 0;
margin: 0 auto;
/* 下划线样式 */
width: 0;
border-bottom: 1px solid #000;
transition: 0.5s;
}
.text:hover.text:after {
/* 控制下划线宽度 */
width: ;
}
09
2022-11
09
2022-11
09
2022-11
09
2022-11
19
2022-10
19
2022-10