你好!
看下面的代码:
body{
background:#000;
}
#banner{
height:80px;
position:relative;
background:red;
border-radius:3px;
overflow:hidden;
}
#banner::before{
/*make pseudo-element take up all space*/
content:'';
position:absolute;
top:0;
bottom:0;
width:100%;
/*tricky part*/
background:linear-gradient(to right, #1d2021, transparent);
}
<div id="banner">
text
</div>
在我测试的所有浏览器上,背景都会溢出(你可以在左边的角落看到红点)。当我搜索解决方案时,它说我应该使用一个叫做的东西,padding-box但它似乎在这里不起作用。
我在这里想念什么?