Web

폼 버튼에 색상 삽입하기

알콜뭉뭉이 2017. 12. 22. 08:12

<html>
<head>
<style type="text/css">
<!--
  .format{
    background-color:#3366FF;
    border-color:#330066;
    font-size: 11px;
    font-weight:bold;
    letter-spacing:5px;
    height:50px;
  }
-->
</style>
</head>

<body>
<center>
<form>
<input name="home" type="button" value="home" class="format">
</form>
</center>
</body>
</html>