-
【CSS:link】테이블(Table)에서 셀(Cell) 전체에 링크 걸기Html,CSS 2020. 5. 16. 20:40728x90
<table class="table table-bordered bg-white table-hover">
<thead>
<tr>
<th scope="col" class="check-col">
<input type="checkbox">
</th>
<th scope="col" class="notice-no">번호</th>
<th scope="col">제목</th>
<th scope="col" class="notice-no">조회수</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"><input type="checkbox" name="chek[]"></th>
<th scope="row">1</th>
<td><a href="#" style="display:block;">Otto</a></td>
<td>@mdo</td>
</tr>
</tbody>
</table>링크 태그 <a>〜</a>는 인라인 요소이기에, 직접 다른 요소를 결합하여 CSS를 적용시킬 수 없기 때문에
display:block;
728x90'Html,CSS' 카테고리의 다른 글
라디오 버튼이든 체크박스든 중복체크 안되게 만들때 (0) 2020.05.20 메뉴 접었다 펴기 (0) 2020.05.20 어드민페이지 틀잡기 연습 (0) 2020.04.06 word-spacing, letter-spacing: 글자 사이의 간격 및 단어 사이의 간격 변화 (0) 2020.04.03 text-transform(대문자 전환) (0) 2020.04.03