CSS实现各种样式 发表于 2021-11-27 更新于 2022-06-27实现+号HTML12<div class="add"></div>CSS1234567891011121314151617181920212223.add { position: relative; width: 80px; height: 80px;}.add:after { height: 100%; border-left: 20px solid #666; margin-left: 30px}.add:before { width: 100%; border-top: 20px solid #666; margin-top: 30px}.add:after, .add:before { content:""; position: absolute;}输出三条线HTML123<div class="menu"></div>CSS123456.menu { border-top: 60px double; height: 20px; border-bottom: 20px solid; width: 80px;}输出