将两个元素并排放置,并且两个元素仍然有边距

发布于 2025-01-06 17:04:00 字数 744 浏览 1 评论 0原文

我在写作的时候似乎经常遇到这个问题。我在同一行有两个元素。我需要它们都有边距,因此无法将它们的位置设置为absolute。如果我不设置第一个元素的位置,它看起来很好。但是,第二个元素将出现在第一个元素的下方。这很糟糕;我希望它们出现在同一行。换句话说,我想将这两个元素设置为 position:absolute; top: 0; 但是我不能使用我需要的边距。

HTML:

#userQuestion{
//border: 1px solid yellow;
width: 400px;
position: relative;
top: 0px;
left: 40px;
line-height: 1.28;
display: inline-block;
}

.container{
padding: 0;
margin 0;
border-top: 1px solid #ccc;
//border: 1px solid blue;
margin-top: 30px;
width: 480px;
}

HTML:

<div id='userQuestion'></div>  //this is fine
<div class='container'></div>  //this appears underneath userQuestion.  I would like them to be on the same line.

I seem to have this problem a lot when i'm writing. I have two elements on the same line. I need them both to have margins and thus cannot set their positions to absolute. if i don't set the position of the first element, it appears fine. However, the second element will appear below the first element. This is bad; I would like them to appear on the same line. In other words I would like to set both of the elements to position: absolute; top: 0; but then i can't use margin, which i need.

HTML:

#userQuestion{
//border: 1px solid yellow;
width: 400px;
position: relative;
top: 0px;
left: 40px;
line-height: 1.28;
display: inline-block;
}

.container{
padding: 0;
margin 0;
border-top: 1px solid #ccc;
//border: 1px solid blue;
margin-top: 30px;
width: 480px;
}

HTML:

<div id='userQuestion'></div>  //this is fine
<div class='container'></div>  //this appears underneath userQuestion.  I would like them to be on the same line.

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

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

发布评论

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

评论(1

执着的年纪 2025-01-13 17:04:00

尝试以下操作:

.container {
    border-top: 1px solid #CCCCCC;
    display: inline-block;
    margin-top: 30px;
    padding: 0;
    width: 480px;
}

Try the following :

.container {
    border-top: 1px solid #CCCCCC;
    display: inline-block;
    margin-top: 30px;
    padding: 0;
    width: 480px;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文