本文介绍了div内的阴影的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以在不使用图片的情况下在div框内显示阴影?相反,我想使用css命令.
Is it possible to display a shadow inside a div box without using pictures?Instead I want to use css commands.
那么有什么命令,例如:-webkit-box-shadow: 1px inset;
吗?
So is there some command like: -webkit-box-shadow: 1px inset;
?
推荐答案
在CSS3中存在框-shadow wich也可以插入以完全满足您的需要.以下浏览器支持此功能:
in CSS3 theres box-shadow wich can also be inset to do exactly what you need. this is supported by the following browsers:
- chrome> = 10.0(> = 4.0,带有
-webkit
-前缀) - firefox> = 4.0(带有
-moz
-prefix的> = 3.5) - IE> = 9.0
- 歌剧> = 10.5
- safari> = 5.1(带有
-webkit
-prefix的> = 5.0)
- chrome >= 10.0 (>= 4.0 with
-webkit
-prefix) - firefox >= 4.0 (>= 3.5 with
-moz
-prefix) - IE >= 9.0
- opera >= 10.5
- safari >= 5.1 (>= 5.0 with
-webkit
-prefix)
这篇关于div内的阴影的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!