CSS/Cookbook 6

【CSS/table】Creating table with div(div로 테이블 만들기) #1

1. Description display: table, display: table-row, display: table-cell을 이용하여 테이블을 만든다. 2. Example (1) : 기본 테이블 다음은 가장 기본적인 2 x 2형태의 테이블이다(테이블의 border조차 보이지 않는다). ._1q74-ex-1 { } ._1q74-ex-1 .table { display: table; background: #022F04; width: 200px; height: 200px; } ._1q74-ex-1 .row { display: table-row; } ._1q74-ex-1 .cell { display: table-cell; background: #196F1D; }

CSS/Cookbook 2023.03.16

pseudo-class에 대하여

jQuery API문서를 보면서 계속 나를 신경쓰이게 하는 것이 있어서 검색을 좀 해 보았다. 1. 무엇 이미지의 설명 중에서 「pseudo-class selectors(thos that begin with a ":"」부분이다. 출처 : https://api.jquery.com/file-selector/ 2. 내용 pseudo-class는 요소(element)의 특별한 상태를 정의하는 데 사용한다고 한다. 태그로 예를 들면, a:link, a:visited, a:hover ...와 같이 사용한다고 할 때 [:link], [:visited], [:hover]을 의미한다. ※ 자세한 내용은 「3. Reference」를 참고하시기 바랍니다. 3. Reference Thank you, www.w3schools...

CSS/Cookbook 2023.02.23