일단 해보는 코딩/CSS

[CSS] 회원가입, 로그인폼 만들기

eun_zoey2 2022. 6. 21. 12:02
728x90

 

<..생략>
  <style>
    #col1 {width:80px;}
    input{width: 150px; height: 25px;}
    button {padding: 22px 22px; margin-left: 3px;}
  </style>
</head>
<body>
  <h3>로그인 폼</h3>
  <form>
    <table>
      <tr>
        <td id="col1">아이디</td>
        <td><input type="text"></td>
        <td rowspan="2"><button>로그인</button></td>
      </tr>
      <tr>
        <td>비밀번호</td>
        <td><input type="password"></td>
      </tr>
    </table>
  </form>
<..생략>

 

 

login_form.html
0.00MB
proj8-1.html
0.00MB

 

 

proj8-4.html
0.00MB