JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html lang="ko">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<link rel="stylesheet" href="style.css">
</head>
<body>
	<article>
		<table>
			<tr>
				<th>No.</th>
				<th>제목</th>
				<th>작성일</th>
				<th>작성자</th>
			</tr>

			<tr>
				<th>4</th>
				<th>테이블 테스트입니다.</th>
				<th>2016.9.28</th>
				<th>박경두</th>
			</tr>

			<tr>
				<th>3</th>
				<th>테이블 테스트입니다.</th>
				<th>2016.9.28</th>
				<th>박경두</th>
			</tr>

			<tr>
				<th>2</th>
				<th>테이블 테스트입니다.</th>
				<th>2016.9.28</th>
				<th>박경두</th>
			</tr>

			<tr>
				<th>1</th>
				<th>테이블 테스트입니다.</th>
				<th>2016.9.28</th>
				<th>박경두</th>
			</tr>									
		</table>
	</article>
</body>
</html>