gpt4 book ai didi

html - 边框像素重叠

转载 作者:行者123 更新时间:2023-11-28 12:11:38 24 4
gpt4 key购买 nike

我想不通。

我希望彩色边框与灰色边框重叠。但是,边框拒绝与底部边框重叠。

这是一张图片: http://gyazo.com/bc4cbaab9bfa3a173709309ad64f880e.png

边框的代码是:

<li>
<div class="content blue-border">
<span class="icon-uniE601"></span>
</div>
</li>


.sidebar ul li {
background-color: #f2f2ea;
border-right: 1px solid #dfdfd7;
border-top: 1px solid #dfdfd7;
}
.content
{
border-left: solid 5px #0094ff;
width:100%;
height:100%;
}
.content span
{
height: 70px;
text-align: center;
line-height: 70px;
font-size: 2em;
color: #787878;
}
.sidebar ul li:hover
{
background-color: black;
}
.sidebar ul li:first-child
{
border-top: none;
}
ul li
{
list-style: none;
padding: 0;
margin: 0;
width: 100%;
height: 100%;
}
.blue-border
{
border-left: solid 5px #0094ff;
}
.orange-border
{
border-left: solid 5px #ff6a00;
}

代码如下: http://jsfiddle.net/bG8Wb/2/

提前致谢!

最佳答案

你可以试试这个

element_that_needs_to_shift {
position:relative;
top:1px;
}

...

这是你想要的吗?

.sidebar ul li {
background-color: #f2f2ea;
border-right: 1px solid #dfdfd7;
/*border-top: 1px solid #dfdfd7;*/
}

关于html - 边框像素重叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19467229/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com