我正在尝试使用线性渐变来设置框的样式。我希望所有四个侧面的像素都从红色变白色为7px。到目前为止,我已经在一侧(底部)工作,没有问题:
background: -webkit-linear-gradient(bottom, white, #eb3136 7px);
background: -o-linear-gradient(bottom, white, #eb3136 7px);
background: -moz-linear-gradient(bottom, white, #eb3136 7px);
background: linear-gradient(bottom, white, #eb3136 7px);
如何获得7像素淡入淡出以便在其他三面书写?
谢谢你的帮助。
最佳答案
box-shadow: 0px 0px 7px #eb3136 inset;
可能会以更简单的方式完成您想要的操作。
小提琴:http://jsfiddle.net/6EREc/
关于css - 在<div>的所有四个侧面上使用线性渐变,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24768530/