所以我试图为博客制作滚动条,但它不起作用
之前:.my-element { background: red; }
之后:.my-element { background: linear-gradient(#e66465, #9198e5); }
文件:https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient
发电机:http://www.colorzilla.com/gradient-editor/
这是一个演示:
.my-element {
background: linear-gradient(#e66465, #9198e5);
width: 100%;
height: 200px;
}
<div class="my-element"></div>