所以我遇到了一个奇怪的 CSS 行高问题,列表项可能会在单个点上包裹到第三个项目。行高有一个设定值,但是当它在同一点内换行到第三行时,行高是不同的。
到目前为止,我已将行高值和高度设置为自动。这没有任何区别。我想知道是否需要为此设置另一个我不知道但在网上找不到任何有用资源的属性。
<ul class="iconlist">
<li>Aerodynamics force coefficients and centre of balance</li>
<li>Contour of Mach number, pressure coefficient, yPlus, wall shear stress, Q-criterion, etc</li>
<li>Frequency response analysis</li>
</ul>
ul.iconlist li {
line-height: 1.42857143; /** not my choice to have this value **/
height:auto;
}