Heim > Fragen und Antworten > Hauptteil
Wer hat diesen Effekt gemacht? Das habe ich mit border-right:1px solid #eee;border-bottom:1px solid #eee; geschrieben. Wenn die Maus schwebt, soll links auch ein pixelroter Rahmen vorhanden sein
淡淡烟草味2017-07-05 11:06:45
看起来好像每个项题主都只有右边跟下边?
我感觉改成每个项都有左边跟下边,hover的时候再通过设置相邻元素的左边颜色如何?
示例:
*{
box-sizing:border-box;
}
.wrap{
width:300px;
}
.item{
width:75px;
float:left;
text-align:center;
border:1px solid #eee;
border-right-width:0;
}
.item:last-child{
border-right-width:1px;
}
.item:hover{
border-left-color:red;
border-bottom-color:yellow;
}
.item:hover + .item{
border-left:1px solid yellow;
}
.item:last-child:hover{
border-right:1px solid yellow;
}
<p class="wrap">
<p class="item">
hello
</p>
<p class="item">
hello
</p>
<p class="item">
hello
</p>
<p class="item">
hello
</p>
</p>
http://runjs.cn/detail/ibxy9qab