gpt4 book ai didi

css - HTML/CSS : Extra spacing above and below text-type input

转载 作者:太空狗 更新时间:2023-10-29 13:42:04 27 4
gpt4 key购买 nike

实例:http://jsfiddle.net/yDQXG/

我在 Chrome 中看到的:http://i.imgur.com/shLfA.png

我似乎无法弄清楚输入元素(蓝色字段)周围的间距是从哪里来的。有什么想法吗?

<form method="get">
<fieldset class="halfblock">
<input class="blockheader" type="text" value="Field A">
<textarea class="blocktext" rows="5">Line 1&#13;&#10;Line 2</textarea>
</fieldset>
</form>

最佳答案

因为它们是行内元素。同样的事情经常发生在图像上。

您需要做的就是将 display:block 添加到您的输入中:

input.blockheader {
margin: 0;
padding: 0;
text-align: center;
background: #ABD9E2;
font: 11px/11px 'Vollkorn', serif;
border: none;
width: 100%;
position: relative;
/* top: -7px; */

display: block;
}

关于css - HTML/CSS : Extra spacing above and below text-type input,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13433317/

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