gpt4 book ai didi

html - 为什么 width 和 height CSS 不影响这个按钮元素?

转载 作者:太空宇宙 更新时间:2023-11-04 02:13:23 25 4
gpt4 key购买 nike

如果我有

<button></button>

button {width: 1ex; height: 1ex;}

它在 Firefox (47.0) 中呈现如下

enter image description here

button {
width: 1ex;
height: 1ex;
}
<button></button>

为什么不是正方形?

最佳答案

Firefox 将默认填充应用于元素,如下面的屏幕截图所示(6px 在左侧和右侧)

另外,如果你需要一个完美的方形按钮,你需要设置(或移除)它的边框,例如

button { 
width: 1ex;
height: 1ex;
padding: 0;
border: 1px solid currentColor;
}

(那么你可能应该调整宽度和高度,因为按钮尺寸减小了很多)


Firefox 上的计算框模型:

enter image description here

关于html - 为什么 width 和 height CSS 不影响这个按钮元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39330909/

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