为什么 margin-top 在此布局上不起作用

发布于 2024-10-31 01:01:02 字数 284 浏览 1 评论 0原文

我想要这个: http://www.img-share.net/uploads/33986layout.png

但这不起作用 http://jsfiddle.net/RLN8x/1/ 请帮我...

I want this:
http://www.img-share.net/uploads/33986layout.png

But this does not work
http://jsfiddle.net/RLN8x/1/
please help me...

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

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

发布评论

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

评论(2

梦中的蝴蝶 2024-11-07 01:01:02

尝试这个更新版本: http://jsfiddle.net/RLN8x/5/

您需要设置“block”到相对位置并使用负 top 值将其推到父级之外。

Try this updated version: http://jsfiddle.net/RLN8x/5/

You need to set the "block" to relative position and use a negative top value to push it outside the parent.

忆梦 2024-11-07 01:01:02

您可以使用相对定位来代替:

.block {
    position: relative;
    top: -15px;
    background:#eee;
    margin-left:15px;
    margin-right:15px;
    height:30px; 
}

You could use relative positioning to do this instead:

.block {
    position: relative;
    top: -15px;
    background:#eee;
    margin-left:15px;
    margin-right:15px;
    height:30px; 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文