如何缩进而不隐藏部分阴影?

发布于 2024-09-24 20:23:55 字数 465 浏览 6 评论 0原文

我有想要垂直对齐的内容,因此我使用这个简单的类来缩进:

.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

剧终人散尽 2024-10-01 20:23:55

向 indent-1 添加填充。

Add padding to indent-1.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文