ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • [Bootstrap] Dark 테이블 간단 소스
    program_language 및 궁금한것/Bootstrap 2019. 10. 12. 11:32

    <meta name="viewport" content="width=device-width, initial-scale=1">
      <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
      <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
      <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
    <meta charset="UTF-8">
    <title>헤드와 헤드사이에 요것을 추가</title>
    </head>
    
    <div class="container">
    	<table class="table table-dark table-striped">
    		<thead>
            	<tr>
    			<th>책이름</th>
    			<th>저자</th>
    			<th>가격</th>
    			</tr>
            </thead>
            <tbody>
            	<tr>
                <th>넣을 내용들</th>
                </tr>
            </tbody>
        </table>
    </div>

    요즘 슬슬 Dark테마가 질리기 시작했다.... ㅎㅎ

    반응형

    댓글

Designed by Tistory.