<html>
<head>
<style>
#sub{//通过id实现
width:300px //只是假定的值,需要根据实际的要求写。
height:30px
}
</head>
<body>
<input type='submit' value="提交" id='sub'>
</body>
</html>
css文件中添加以下内容:.mybutton{
width:100px
height:100px
........
}
然后再用到button的时候的给button加上CssClass="mybutton"就可以了