250x250
Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- PlaceHolder
- input password 입력
- a11y
- 컴퓨터과학과 과목 후기
- CSS
- focus-within
- meta
- microsoft designer compact keyboard
- input text placeholder image
- 마이크로소프트 디자이너 컴팩트 키보드
- Attribute Selectors
- 주민번호 input
- 특정도값
- 오블완
- 주민번호 css
- image Filter
- sr-only
- microsoft designer compact keyboard & mouse
- select placeholder
- 마이크로소프트 디자이너 컴팩트 키보드 마우스 세트
- 티스토리챌린지
- placeholder-shown:
- 한국방송통신대학교 졸업 후기
- 엣지 password 눈모양 제거
- 컴퓨터과학과 교과목 후기
- input text javascript
- 컴퓨터과학과 후기
- input password javascript
- input password 입력 바꾸기
- password input
Archives
- Today
- Total
디자인과 개발 그 사이
table 기본 셋팅/border-spacing/border-collapse 본문
728x90
table를 그냥 만들면 칸마다 공간이 생긴다. 이를 없애기 위해 기본으로 넣어두는 값이 있다.
바로 아래 두가지 이다.
border-spacing: 0;
border-collapse: collapse;
html
<table class="table">
<thead class="thead">
<tr class="tr">
<th class="th">제목</th>
<th class="th">제목</th>
<th class="th">제목</th>
<th class="th" colspan="2">가로 합친 제목</th>
</tr>
<tr class="tr">
<td class="td" rowspan="2">세로<br> 합친<br> 내용</td>
<td class="td">내용</td>
<td class="td">내용</td>
<td class="td" colspan="2">가로 합친 내용</td>
</tr>
<tr class="tr">
<td class="td">내용</td>
<td class="td">내용</td>
<td class="td">내용</td>
<td class="td">내용</td>
</tr>
</thead>
</table>
css
.table {
border-spacing: 0;
border-collapse: collapse;
}
.th,
.td {
padding: 5px;
border: solid 1px #000;
text-align: center;
font-weight: 400;
}
결과
border-collapse는 표(table)의 테두리와 셀(td)의 테두리 사이의 간격을 어떻게 처리할 지 결정
border-spacing으로 표(table)의 테두리와 셀(td)의 테두리 사이의 간격을 정함
728x90
'css' 카테고리의 다른 글
[오버스크롤 동작] ios 모바일 스크롤 바운스 막기 / 스크롤 체이닝 막기 (0) | 2023.07.24 |
---|---|
미디어 쿼리(Media Queries) / 적용방법 / css 반응형 (0) | 2023.07.21 |
웹폰트 사용하기 / @font-face (0) | 2023.07.20 |
css 줄바꿈 지정하기 white-space/word-wrap/word-break (0) | 2023.07.14 |
css로 말줄임 만들기 /ellipsis '...'/ 한줄, 두줄이상 (0) | 2023.07.14 |