删除 HTML 文本框上方和下方的默认空白

发布于 2024-12-08 00:02:23 字数 970 浏览 1 评论 0原文

我有一个问题,我似乎无法在这里找到答案或自己解决。默认情况下,文本框似乎有大约。实际文本框上下各 10 像素。我尝试将边距和填充设置为 0,但没有保留任何空间。

我希望该文本框位于其下方元素的正上方,使用边距移动它会导致其将下方的 div 推低,因此它并没有真正的帮助。知道如何摆脱那个空白吗?

标记:

<div class="span-8 last">
  <label for="VoicenoteSearch"></label>
  <input name="data[Voicenote][search]" type="text" class="input-text long" style="margin-top:10px;margin-left:-10px" placeholder="Search" id="VoicenoteSearch">
</div>

相关 CSS:

label {
  display: block;
}

input.input-text {
    border-color: #b9b9b9;
    border-width: 2px;
    position: relative;
    z-index: 2;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 8px;
    padding: 5px;
}

.input-text.long {
  width: 320px;
}

JSFiddle: http://jsfiddle.net/pyQ5T/

即使我删除了所有CSS 这些空格就在那里,默认情况下它似乎是文本框的一部分

I have an issue and I can't seem to either find the answer here or solve it myself. The textboxes seem to have by default approx. 10px over and below the actual textbox. I've tried setting the margin and the padding to 0 but nothing the space remains.

I want that textbox to be right over the element that is below it, using margin to move it causes it to push the div below it lower so it doesn't really help. Any idea how I can get rid of that whitespace?

Markup:

<div class="span-8 last">
  <label for="VoicenoteSearch"></label>
  <input name="data[Voicenote][search]" type="text" class="input-text long" style="margin-top:10px;margin-left:-10px" placeholder="Search" id="VoicenoteSearch">
</div>

Relevant CSS:

label {
  display: block;
}

input.input-text {
    border-color: #b9b9b9;
    border-width: 2px;
    position: relative;
    z-index: 2;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 8px;
    padding: 5px;
}

.input-text.long {
  width: 320px;
}

JSFiddle: http://jsfiddle.net/pyQ5T/

Even if I remove all the CSS those spaces are there, it seems it's part of the textbox by default

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

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

发布评论

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

评论(1

别闹i 2024-12-15 00:02:23

尝试添加这些 CSS 属性:

padding:0px;
margin:0px;
float: left;

Try adding these CSS properties:

padding:0px;
margin:0px;
float: left;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文