是否可以仅使用 CSS 创建以下内容?
我已经创建了容器和圆角。在这里拉小提琴。
但我不知道如何获得轻微的闪亮效果。是否可以在 CSS 中做到这一点?如果有怎么办?
以下是我到目前为止编写的代码。
HTML
<div id="phone-outer">
<div id="phone-inner">
</div>
</div>
CSS
#phone-outer {
margin-bottom:200px;
margin:0 auto;
width:400px;
height:500px;
background-color:#333;
-webkit-border-bottom-right-radius:25px;
-webkit-border-bottom-left-radius:25px;
-moz-border-radius-bottomright:25px;
-moz-border-radius-bottomleft:25px;
border-bottom-right-radius:25px;
border-bottom-left-radius:25px;
}
#phone-inner {
margin:0 auto;
background-color:#FFF;
width:360px;
height:460px;
}