gpt4 book ai didi

文本框下方的 HTML 边框

转载 作者:行者123 更新时间:2023-11-28 05:19:21 27 4
gpt4 key购买 nike

如何使底部边框正好位于文本框下方?

div {
border-bottom: solid 2px #354458;
}
p {
color: #ffffff;
background-color: #354458;
text-align: center;
padding: 8px 10px 5px 10px;
font-weight: bold;
font-size: 12px;
letter-spacing: 1px;
width: 190px;
font-family: 'Courier New', courier, monospace
}
<div>
<p>How do I remove the margin below here?</p>
</div>

最佳答案

p 标签默认会有一些边距。将其设为零,以便边框贴在底部。

添加了margin-bottom:0px;

div {
border-bottom: solid 2px #354458;
}
p {
color: #ffffff;
background-color: #354458;
text-align: center;
padding: 8px 10px 5px 10px;
font-weight: bold;
font-size: 12px;
letter-spacing: 1px;
width: 190px;
font-family: 'Courier New', courier, monospace;
margin-bottom:0px;
}
<div>
<p>Margin from below this has been removed!!</p>
</div>

关于文本框下方的 HTML 边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41042256/

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