如何设置元素上方的背景图像位置?

发布于 2024-12-27 04:16:14 字数 114 浏览 0 评论 0原文

我有一个元素(一个按钮),我想要有 2 个背景图像。 一个是渐变,我希望另一个位于按钮上方。 我该怎么做?

有什么方法可以添加类似于 margin-top: -20px; 的内容吗?或者类似的东西?

I have an element (a button) that i want to have 2 background images.
one is a gradient and i want the other to position above the button.
How do i do that?

Is there some way i can add something simillar to margin-top: -20px; or something like that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

屋檐 2025-01-03 04:16:14

解决方案是使用 :before psuedo

例如:

  .box:before{
       content:url(icon_neutral.png);
       display:block;
       position:relative;
       top: -30px;
  }

根据 here 找到的 gagarine 解决方案:

The solution is using :before psuedo

for example:

  .box:before{
       content:url(icon_neutral.png);
       display:block;
       position:relative;
       top: -30px;
  }

according to gagarine's solution found here:

千笙结 2025-01-03 04:16:14
 <style type="text/css">
    .modalBackground
    {
        background-image:url('image/img2.jpg');
        background-repeat:repeat-x  ;

        filter: alpha(opacity=80);
        opacity: 0.8;
        z-index: 10000;
    }
  </style>
 <style type="text/css">
    .modalBackground
    {
        background-image:url('image/img2.jpg');
        background-repeat:repeat-x  ;

        filter: alpha(opacity=80);
        opacity: 0.8;
        z-index: 10000;
    }
  </style>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文