在iPhone上的按钮有问题?

时间:2013-08-17 19:41:33

标签: html css

我的身体里有这个代码,

<button onclick="change();" id="button2">Click!</button>

这在我的CSS中

#button2
{
width: 200px;
height: 200px;
}

该按钮在我的电脑上显示为200x200但在我的iphone上显示错误。为什么是这样?我以前使用过此代码没有问题

1 个答案:

答案 0 :(得分:0)

试试这个

#button2
{
width: 200px;
height: 200px;
display: block;
}