我的身体里有这个代码,
<button onclick="change();" id="button2">Click!</button>
这在我的CSS中
#button2
{
width: 200px;
height: 200px;
}
该按钮在我的电脑上显示为200x200但在我的iphone上显示错误。为什么是这样?我以前使用过此代码没有问题
答案 0 :(得分:0)
试试这个
#button2
{
width: 200px;
height: 200px;
display: block;
}