使用css删除所选框的左右边框而不使用javascript可能吗?最少2个盒子,最多5个或更多盒子
例如;
我有2个盒子。只有第一个框有右边框。我想要做; 无论选择还是悬停,边框都必须消失。 看我的图片example image
答案 0 :(得分:0)
您可以使用悬停框的边框。想法是当你将鼠标悬停在任何一个盒子上时,你会这样做:
border-left: 1px solid orange;
margin-left: -1px;
width: calc(20% + 1px);
这是一个解决方案(建议使用border-right width = 1px):
.cont {
width: 100%;
height: 100px;
}
.box {
width: 20%;
height: 100px;
float: left;
background: orange;
display: inline-block;
box-sizing: border-box;
}
.box:not(:last-child) {
border-right: 1px solid black;
}
.box:not(:first-child):hover {
border-left: 1px solid orange;
box-sizing: padding-box;
margin-left: -1px;
width: calc(20% + 1px);
}
.box:hover {
background: lightblue;
border-right: 1px solid lightblue;
}
<div class="cont">
<div class="box">box1</div>
<div class="box">box2</div>
<div class="box">box3</div>
<div class="box">box4</div>
<div class="box">box5</div>
</div>