게시판 HTML - OhMinsSup/tip-review GitHub Wiki

<!DOCTYPE html>
<html lang="en">

<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">
	<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
	 crossorigin="anonymous">
	<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
	 crossorigin="anonymous"></script>
	<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
	 crossorigin="anonymous"></script>
	<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
	 crossorigin="anonymous"></script>
	<title>Static Template</title>
	<style>
  .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
</style>
</head>

<body>
	<div class="table-responsive">
		<table class="table">
			<thead colspan="9">
				<tr>
				       <th>No</th>
					<th>구분</th>
					<th>유형</th>
					<th>강의명댓글</th>
					<th>좋아요</th>
					<th style="text-align:center;">
						<table class="table">
					            <th colspan="3" style="border-bottom:none;border-top:none;">작성자</th>
				                    <tr>
					               <td style="border-top:none;">회원유형</td>
					               <td style="border-top:none;">ID</td>
					               <td style="border-top:none;">닉네임</td>
				                    </tr>
		                                </table>
		                        </th>
		                        <th>등록일</th>
		                        <th>노출상태</th>
		                        <th>관리</th>
		                     </tr>
		                 </thead>
		        <tbody>
			<tr>
				<td>0</td>
				<td>강의</td>
				<td>댓글</td>
				<td>내용...</td>
				<td>10</td>
				<th style="text-align:center;">
					<table class="table">
						<tr>
							<td style="border-top:none;">회원</td>
							<td style="border-top:none;">ID12312</td>
							<td style="border-top:none;">회원</td>
						</tr>
					</table>
				</th>
				<td>
					2019-05-01
					15:20:32
				</td>
				<td>노출</td>
				<td><button data-btn-type="modify" class="btn waves-effect waves-light" type="button">수정</button>
					<button data-btn-type="detail" class="btn waves-effect waves-light" type="button">보기</button></td>
			</tr>
		</tbody>
		</table>
	</div>
</body>

</html>
⚠️ **GitHub.com Fallback** ⚠️