gpt4 book ai didi

html - CSS-删除 hr 标签空间不起作用

转载 作者:搜寻专家 更新时间:2023-10-31 22:05:37 25 4
gpt4 key购买 nike

我已经阅读了多篇文章,我已经按照说明进行操作,但仍然没有任何变化。我要做的是删除 hr 标签和我的表单之间的空格。我认为通过将 marginpadding 设置为 0 可以解决问题,但我得到的是:

enter image description here

但我想要像下图这样的东西 - 只是用一条线分隔字段。

enter image description here

html

<label for="Fridss" class="label"> F </label>
<button type="button" id="add" name="add" class="btn btn-default addButton" onClick="addInput('dynamicInput');">
<span class="glyphicon glyphicon-plus"></span>
</button>
<input type="text" name="Fridss" id="Fri" class="open_hours" placeholder="--:--" required tabindex="16">
<span>-</span>
<input type="text" name="Fridss" id="Friday" class="open_hours" placeholder="--:--" required tabindex="17">
<hr />

CSS

hr {
padding: 0;
margin: 0;
width: 400px;
border-top: 1px dotted #58585b;
}
.open_hours {
padding: 0;
margin: 0;
border-radius: 5px;
width: 20%;
height: 25px;
}

或者是否有更好的在 css 中创建线条的方法。

最佳答案

它确实取决于浏览器的内置样式。检查 fiddle :https://jsfiddle.net/abstractecho/7a3gzpqL/

body{color: black;}
hr {
padding: 0 !important;
margin: 0 !important;
width: 400px;
border-top: 1px dotted #58585b;
}
.open_hours {
padding: 0;
margin: 0;
border-radius: 5px;
width: 20%;
height: 25px;
}

您可能想检查是否添加边距:0 !对您的 hr css 很重要,以覆盖浏览器样式并让我知道它是否有效。

关于html - CSS-删除 hr 标签空间不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36256839/

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