以下代码无效:
button {
min-width: 300px;
}
但是,当我在下面添加background-color
时,min-width
正在运作。
是什么原因? (我在mac中使用Google Chrome 64.0进行了测试)
button {
min-width: 300px;
background-color: #f00;
}
答案 0 :(得分:0)
在某些browsers, on iOS,
中,其 <button>
(默认)配置中的native
元素将not respond
设置为最小宽度。此问题是由于本机按钮。
当对changes
参数进行other style
且浏览器为forced to abandon
本机按钮时,最小宽度设置为takes affect
。