input type=button设置高度不管用

 <input type="button" name="calRate" id="calRate" value="查询" />
 #calRate{
2 width: 100%;
height: 45px;
}

这样写了之后不起作用,,,无语。对比之后,突然发现设置个背景,或者写个border:none;甚至随便写个属性。。。

 #calRate{
width: 100%;
height: 45px;
background: #CECECE;
}
上一篇:WCF学习笔记(2)——使用IIS承载WCF服务


下一篇:【LeetCode OJ】Swap Nodes in Pairs