Fieldset 中的 Textarea 留下底部空白

Textarea in Fieldset leaves a bottom gap

我想弄清楚为什么 Chrome 在字段集标记中使用文本区域时会留下底部空白。

如果你看看下面的 fiddle 和 Chrome 你会明白我的意思

https://jsfiddle.net/552aamop/1/

fiddle CSS 包含 Eric Meyers 标准重置,我已经重置了 input 和 textarea 标签的边距和填充。 HTML 元素之间没有空格。

<form>
<fieldset><input type='text'/></fieldset>
<fieldset><input type='text'/></fieldset>
<fieldset><textarea>Hello</textarea></fieldset>
<fieldset><textarea>Hello</textarea></fieldset>
</form>  

Firefox 和 IE 似乎在呈现字段集之间没有间隙。 Chrome 留下一个空隙,但只有在字段集包含文本区域时才会留下空隙。知道为什么吗?

我正在使用 Chrome 版本 56.0.2924.87。

您应该在 css 中添加以下语句。

<style> fieldset {padding: 0px;} </style>

字段集不会在它们之间留下空隙——而是里面的文本区域不会完全填满它们。这样做的原因是文本区域有默认的 属性 "display: inline-block",这意味着它的高度将由里面的内容定义。我认为另一部分是 Chrome 给了它一个最小高度。

所以我建议您将 Textarea 设置为 css 属性 "display:block",这样它就可以填满容器的高度。

使用 display: flex; 所有浏览器都运行相同的输出

fieldset{
    display: flex;
}

input, textarea{
        display: flex;
    }

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
 margin: 0;
 padding: 0;
 border: 0;
 font-size: 100%;
 font: inherit;
 vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
 display: block;
}
body {
 line-height: 1;
}
ol, ul {
 list-style: none;
}
blockquote, q {
 quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
 content: '';
 content: none;
}
table {
 border-collapse: collapse;
 border-spacing: 0;
}

input,
textarea {
  margin:0;
  padding:0;
}
fieldset{
    display: flex;
}
<fieldset><input type='text'/></fieldset>
<fieldset><input type='text'/></fieldset>
<fieldset><textarea>Hello</textarea></fieldset>
<fieldset><textarea>Hello</textarea></fieldset>

因为您在基地使用 font: inherit;。 Chrome 正在添加其默认行高。似乎 Firefox 的默认行高为 1.1,但 Chrome 的默认行高为 1.2。

Shorthand: font: font-style font-variant font-weight font-size/line-height font-family;

这将解决您的问题。

fieldset{ line-height:0}

检查这个 fiddle:

Problem:

每个浏览器都有显示元素的自定义方式。 Chrome 设置显示:块和一些 webkit 边距但覆盖它们不起作用。

fieldset {
    display: block;
    -webkit-margin-start: 2px;
    -webkit-margin-end: 2px;
    -webkit-padding-before: 0.35em;
    -webkit-padding-start: 0.75em;
    -webkit-padding-end: 0.75em;
    -webkit-padding-after: 0.625em;
    min-width: -webkit-min-content;
    border-width: 2px;
    border-style: groove;
    border-color: threedface;
    border-image: initial;
}

Solution:

fieldset {
        display: flex;
    }

添加其他答案,将 vertical-align:middle 赋予 textarea 元素也可以。

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
 margin: 0;
 padding: 0;
 border: 0;
 font-size: 100%;
 font: inherit;
 vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
 display: block;
}
body {
 line-height: 1;
}
ol, ul {
 list-style: none;
}
blockquote, q {
 quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
 content: '';
 content: none;
}
table {
 border-collapse: collapse;
 border-spacing: 0;
}

input,
textarea {
  margin:0;
  padding:0;
  /* this works as well */
  vertical-align:middle;
}
<form>
  <fieldset><input type='text' /></fieldset>
  <fieldset><input type='text' /></fieldset>
  <fieldset><textarea>Hello</textarea></fieldset>
  <fieldset><textarea>Hello</textarea></fieldset>
</form>