word-wrap: break-word
当相应的规则在 Chrome 中有效时,为什么CSS 规则不会在 Firefox 中缩小元素?
这里的.form-field
容器被限制为 300px 的宽度,legend
它的内部有 100% 的宽度。里面的长字拉伸legend
到溢出 300px 宽度。
当我break-word
使用(非标准)WebKitword-break
定义将 CSS 规则应用于 Chrome 时,长字被破坏并且legend
元素缩小到预期的 300 像素宽度。
在 Firefox 中,相应的word-wrap
规则不会破坏文本并缩小元素,除非我专门将 的宽度设置legend
为 300px。为什么我必须这样做?为什么 Firefox 不能legend
正确计算“100% of 300px”并调整大小?
如果您在 Firefox 上查看此代码段,您会看到legend
仍然溢出其容器的 300 像素宽度。
.form-field {
border: none;
padding: 0;
max-width: 300px;
margin: 0 auto 10px;
outline: 1px solid purple;
}
.form-field legend {
text-align: left;
width: 100%;
word-wrap: break-word;
word-break: break-word;
}
.form-field input[type=text] {
width: 100%;
font-size: 16px;
padding: 7px 14px;
box-sizing: border-box;
border: 1px solid #c8d7e1;
}
<fieldset class="form-field">
<legend>Betweenthesetwo, InowfeltIhadtochoose. Mytwonatureshadmemoryincommonbutallotherfacultiesweremostunequallysharedbetweenthem.</legend>
<input type="text">
</fieldset>
(在 macOS Chrome 64 和 Firefox 57 中测试)。