首页 > 代码库 > 还行的提交按钮

还行的提交按钮

<html>    <head>        <style type="text/css">        input{            background: #F06B37;            border: none;            padding: 0.55em 1.3em 0.6em;            color: #FFF;            font-size: 0.9em;            border-radius: 1.3em;            font-weight: 600;        }        input:hover{            background:#62A0C4;        }        </style>    </head>    <body>        <input type="submit" value="LOGIN">    </body></html>

 

还行的提交按钮