gpt4 book ai didi

html - 如何减少
元素的上边距?

转载 作者:太空宇宙 更新时间:2023-11-04 08:44:24 24 4
gpt4 key购买 nike

我的代码是这样的:

<div class="right">
<div style="padding-left: 40mm;">
<table>
...
</table>
</div>
<hr style="max-width: 40mm; margin-right:0 height:1px; border:none; color:#333;background-color:#333;">
</div>

我想减少 hr 之间的空间和 div标签

我试过如下

<hr style="max-width: 40mm; margin-right:0 height:1px; border:none; color:#333;background-color:#333;margin-top:-10px !important">

但它不起作用。我该如何解决?

更新 fiddle 在下面

https://jsfiddle.net/oscar11/qgr0u3wb/

在上面的 fiddle 中,我想减少 hr 之间的空间和 <div class='test'>

最佳答案

hr {
display: block;
margin: 0 0 0 auto;
border: none;
border-style: inset;
border-width: 1px;
border-color:#333;
max-width: 40mm;
}
<div class="right">
<div style="padding-left: 40mm;">
<table>
... Here's your answer
</table>
</div>
<hr />
</div>

关于html - 如何减少 <hr/> 元素的上边距?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43882517/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com