TIL
[TIL-144] 위코드 51일차:
어포능이만두
2022. 3. 15. 15:49
그리드
https://studiomeal.com/archives/533
테이블 만들기
태그 구성
<table>
<thead>
<tr>
<th>지원 회사</th>
<th>지원 직군</th>
<th>지원 일자</th>
<th>지원 상태</th>
</tr>
</thead>
<tbody>
<tr>
<td>위코드 컴퍼니</td>
<td>프론트엔드</td>
<td>2022.3.14</td>
<td>지원 완료</td>
</tr>
</tbody>
</table>
지원 회사 | 지원 직군 | 지원 일자 | 지원 상태 |
---|---|---|---|
위코드 컴퍼니 | 프론트엔드 | 2022.3.14 | 지원 완료 |
table < thead/tbody < tr < th/td
thead와 tbody를 안 쓰고 바로 tr을 넣었더니 콘솔에서 경고를...
배경색 넣기
https://www.codingfactory.net/10517
React에서 개행하기(줄바꿈)
https://facerain.club/react-newline/
React에서 파일 업로드하기
https://cookinghoil.tistory.com/114