table colspan rowspan 예시
본문 바로가기

Frontend/css

table colspan rowspan 예시

시간지나면 맨날 잊는 테이블

 

colspan

		<thead>
			<tr>
				<th>PRI Type</th>
				<th>Stagger Level</th>
				<th colspan="2">dddddd</th>
				<!-- <th>Min</th> -->
				<!-- <th>Max</th> -->
				<th>Min</th>
				<th>Max</th>
				<th>Min, Numb of Pulses per PRI burst</th>
			</tr>
			<tr>
				<th></th>
				<th></th>
				<!-- <th colspan="2">dddddd</th> -->
				<th>Min</th>
				<th>Max</th>
				<th></th>
				<th></th>
				<th></th>
			</tr>
		</thead>

 

이제 2번째칸 공백들을 합쳐보자

 

rowspan

		<thead>
			<tr>
				<th rowspan="2">PRI Type</th>
				<th rowspan="2">Stagger Level</th>
				<th colspan="2">dddddd</th>
				<!-- <th>Min</th> -->
				<!-- <th>Max</th> -->
				<th rowspan="2">Min</th>
				<th rowspan="2">Max</th>
				<th rowspan="2">Min, Numb of Pulses per PRI burst</th>
			</tr>
			<tr>
				<!-- <th></th> -->
				<!-- <th></th> -->
				<!-- <th colspan="2">dddddd</th> -->
				<th>Min</th>
				<th>Max</th>
				<!-- <th></th> -->
				<!-- <th></th> -->
				<!-- <th></th> -->
			</tr>
		</thead>
반응형

'Frontend > css' 카테고리의 다른 글

BEM css아키텍처 + scss  (0) 2022.03.06
css 명세 읽는법 value  (0) 2022.03.06
width 100%를 하려면 flex grow를 사용해보자  (0) 2021.08.31
inline과 block  (0) 2021.05.19
익숙하지않은 css 리스트  (0) 2021.05.17