如何缩进而不隐藏部分阴影?
我有想要垂直对齐的内容,因此我使用这个简单的类来缩进:
.indent-1 {
margin-left: 144px;
overflow: hidden;
}
这在大多数情况下都可以正常工作,但是如果我在缩进中有一个带有投影的框content 中,overlfflow:hidden
隐藏了部分阴影。
有没有办法在不牺牲阴影的情况下完成这种缩进?
已解答
这是获得所需效果的完整样式,阴影完好无损:
.indent-1 {
margin-left: 120px;
padding-left: 24px;
/* margin + padding = 144 */
overflow: hidden;
}
I have content that I'd like to align vertically, so I'm using this simple class to indent:
.indent-1 {
margin-left: 144px;
overflow: hidden;
}
This works fine in most cases, but if I have a box with a drop shadow within the indented content, the overlfow: hidden
hides part of the shadow.
Is there a way to accomplish this indentation without sacrificing shadows?
ANSWERED
Here is the complete style to get the desired effect, shadows intact:
.indent-1 {
margin-left: 120px;
padding-left: 24px;
/* margin + padding = 144 */
overflow: hidden;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
向 indent-1 添加填充。
Add padding to indent-1.