作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在使用 HTML/CSS
编写一个 PSD
文件,设计者使用了一种有点奇特的阴影。我想不出在 CSS 中做到这一点的方法 - 这可能吗? - 如果是这样,怎么办?
这是阴影:
最佳答案
根据 thgaskell 的建议链接,您可以使用 #box:before 和 #box:after 添加 2 个稍小的索引低于 0 的框并向其添加阴影。也使用阴影的颜色作为这些的背景颜色。
这是一个尝试执行此操作的代码笔(您可以调整它以适合您的目的): http://codepen.io/walmik/pen/fyidv
这是对您附加的图像进行更多调整的另一张图片: http://codepen.io/walmik/pen/eqpGk
HTML:
<div id='box'>Fancy Shadow</div>
CSS:
#box {
position: relative;
width: 600px;
height: 300px;
padding: 20px;
background: #fff;
text-align: center;
font-size: 24px;
color: #333;
font-family: Georgia. serif;
box-shadow: 0px 0px 2px #888;
}
#box:before, #box:after
{
/*this is like appending a div element before the box:*/
z-index: -1;
position: absolute;
content: "";
bottom: 0px;
left: 0px;
width: 45%;
height: 60%;
top: 15px;
max-width:300px;
background: #888;
-webkit-box-shadow: -2px -15px 30px #888;
-moz-box-shadow: -2px -15px 30px #888;
box-shadow: -2px -15px 30px #888;
}
#box:after
{
/*this is like appending a div element after the box:*/
right: 3px;
left: auto;
-webkit-box-shadow: 2px -15px 30px #888;
-moz-box-shadow: 2px -15px 30px #888;
box-shadow: 2px -15px 30px #888;
-webkit-transform: rotate(1deg);
-moz-transform: rotate(1deg);
-o-transform: rotate(1deg);
-ms-transform: rotate(1deg);
transform: rotate(1deg);
}
关于css - 花哨的 CSS 阴影,可能吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19987888/
我有一个网站,其 Vanity URL 模块实现得非常糟糕,并且在某些时间段的负载非常高。由于url模块存在一些bug,系统需要经常重启。所以,我想重写一个该死的模块,使其变得更好并且更少错误....
我是一名优秀的程序员,十分优秀!