<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Document</title>
<style type="text/css">
/*给两个input设置共同样式*/
input{
display: block
width: 100px
height: 60px
border-radius: 30px
font-weight: 900
font-size: 20px
}
/*单独设置不同的样式,这里用的是交集选择器*/
input.btn1{
background-color: white
color: #00DABC
border: 3px solid #00DABC
}
input.btn2{
background-color: #00DABC
color: #fff
border: none
}
</style>
</head>
<body>
<!--两个input标签,分别写两个类名-->
<input type="button" name="" value="INFO" />
<br />
<input type="button" name="" value="INFO" />
</body>
</html>
可以自定义啊,你是要自定义样式吧?表单按钮你可以把他看做一个行内元素,css对应的margin padding background color border border-radius这些属性都是支持的,可以对他的样式随便进行修改。