我正在尝试使用基本上是径向渐变的文本制作元素。我想我可以通过取一个圆形的白色容器然后添加一个白框阴影来做到这一点,但是阴影开始的颜色和 div 的背景颜色在 chrome 中不匹配,并且边框半径属性是在 Firefox 中造成奇怪的边框。
我喜欢一些输入,我为此创建了一个代码笔,但这里是代码......
http://codepen.io/syren/pen/tcdBz
div.feature{
background:#000;
width:100%;
height: 300px;
}
div.text{
width: 300px;
height: 300px;
background: white;
padding: 130px 0 0;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-radius: 160px;
text-align: center;
text-transform: uppercase;
font-weight: bold;
box-shadow: 0 0 50px 50px #fff;
margin: 0 auto;
}
谢谢!