2023년 1월 1일
08:00 AM
Buffering ...

최근 글 👑

그누보드 체크박스

2023. 1. 8. 17:41ㆍ일상취미/그누보드 공부 팁

<!-- 리스트 소개 -->
<style>
table.type03 {
  border-collapse: collapse;
  text-align: left;
  line-height: 1.5;
  border-top: 1px solid #ccc;
  border-left: 3px solid #369;
  margin : 20px 10px;
}
table.type03 th {
  width: 147px;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
  color: #153d73;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;

}
table.type03 td {
  width: 349px;
  padding: 10px;
  vertical-align: top;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
</style>
<table class="type03">
  <tr>
    <th scope="row"> </th>
    <td><input type="text" name="wr_1" value="<?php echo $write['wr_1']?>"></td>
  </tr>
  <tr>
    <th scope="row">작품년도 선택하세요</th>
    <td>
<input type="radio" name="wr_4" value="자막지원">자막있음
<input type="radio" name="wr_7" value="자막파일">자막파일
<input type="radio" name="wr_5" value="자체자막">자체자막
<input type="radio" name="wr_6" value="자막없음">자막없음
  </tr>
  <tr>
    <th scope="row"> </th>
    <td><input type="text" name="wr_2" value="<?php echo $write['wr_2']?>"></td>
  </tr>
  <tr>
    <th scope="row"> </th>
    <td><input type="text" name="wr_3" value="<?php echo $write['wr_3']?>"></td>
  </tr>
</table>
<!-- 여기까지 -->