html css li 一行显示图片,html – css活跃LI的箭头与身体图像背景?

这段CSS代码展示了如何通过浮动元素、清除浮动、相对定位和伪元素来修复LI元素的边框,并在内容周围创建切割效果。同时,通过在UL元素后面添加边框,确保了在页面上的全宽显示。代码还利用伪元素和变换来实现箭头效果,增强了用户体验。
摘要由CSDN通过智能技术生成

这个CSS代码将修复它:

您需要将边框带到LI并在内容的前后左右两侧进行切割.为了画龙点睛,我还在内容之后为UL带来了边框,让你在页面上保持100%.

body {

background: #1abc9c url(//dmypbau5frl9g.cloudfront.net/assets/homepage/banner--themeforest-342995208860d6c90b98134db089ef84.jpg);

}

ul {

overflow: hidden; /* Clear float and hide ul:after content overflow */

position: relative; /* Relative for ul:after content */

width: 100%;

}

ul:after {

content: "";

border-bottom: 3px solid red;

bottom: 0;

position: absolute; /* Now it will start after the last LI */

width: 100%;

}

li {

float: left;

padding: 20px;

position: relative;

}

li:before,

li:after {

content: "";

border-bottom: 3px solid red;

bottom: 0;

position: absolute;

width: 50%;

}

li:before {

left: 0;

}

li:after {

right: 0;

}

li.active:before,

li.active:after {

width: calc(50% - 8px); /* Transparent part of the arrow */

}

li a {

display: block;

position: relative;

}

li.active a:after {

content: "";

width: 15px;

height: 15px;

position: absolute;

top: 100%;

left: 0;

right: 0;

margin: 12px auto 0;

border: solid red;

border-width: 3px 3px 0;

-moz-transform: rotate(315deg);

-webkit-transform: rotate(315deg);

-ms-transform: rotate(315deg);

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值