본문 바로가기

TIL

[TIL-144] 위코드 51일차:

 

그리드

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

 

'TIL' 카테고리의 다른 글

[TIL-146] 위코드 53일차: React에서 파일 다운로드하기  (0) 2022.03.17
[TIL-145] 위코드 52일차:  (0) 2022.03.16
[TIL-143] 위코드 44일차:  (0) 2022.03.09
[TIL-142] 위코드 43일차:  (0) 2022.03.07
[TIL-141] 위코드 42일차:  (0) 2022.03.06