200字范文,内容丰富有趣,生活中的好帮手!
200字范文 > [CSS] css使用first-child 和last-child 实现三条杠效果

[CSS] css使用first-child 和last-child 实现三条杠效果

时间:2021-10-25 16:13:11

相关推荐

[CSS] css使用first-child 和last-child 实现三条杠效果

first-child 和last-child是伪类选择器,选择第一个和选择最后一个子元素

现在实现下面的效果

<div class="menuico"><span></span><span></span><span></span></div>

.menuico span {display: block;width: 21px;height: 2px;background-color: #666;}.menuico span:first-child {margin-top: -6px;}.menuico span:last-child {margin-top: 6px;}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。