是否可以仅使用CSS创建以下内容?
我创造了容器和圆角.小提琴here.
但我不知道如何获得轻微的闪亮效果.是否可以在CSS中执行此操作?如果是这样的话?
下面是我到目前为止编写的代码.
HTML
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;
}