https://material.io/resources/color/#!/?view.left=0&view.right=0 Color Tool - Material Design Create and share color palettes for your UI, and measure the accessibility of any color combination. material.io https://css-tricks.com/snippets/css/a-guide-to-flexbox/ A Complete Guide to Flexbox | CSS-Tricks Our comprehensive guide to CSS flexbox layout. This complete guide explains everything about f..
출처: https://yuricoding.tistory.com/4 [CSS] CSS 공부방법! 게임으로 배우는 CSS 코딩공부를 하면서 정말 여러가지 강의를 접했다.... 그중 CSS학습에 도움이 될만한 좋은 사이트가 있어 블로그에 공유한다. 이 사이트는 유튜버 드림코딩의 엘리님의 강의를 듣고 알게된 사이트 yuricoding.tistory.com https://flukeout.github.io/# CSS Diner A fun game to help you learn and practice CSS selectors. flukeout.github.io https://flexboxfroggy.com/#ko https://dev.to/devmount/8-games-to-learn-css-the-fun-way-..
참고 : https://developer.mozilla.org/ko/docs/Web/CSS/Using_CSS_custom_properties 사용자 지정 CSS 속성 사용하기 (변수) - CSS: Cascading Style Sheets | MDN 사용자 지정 속성(CSS 변수, 종속 변수)은 CSS 저작자가 정의하는 개체로, 문서 전반적으로 재사용할 임의의 값을 담습니다. 사용자 지정 속성은 전용 표기법을 사용해 정의하고, (--main-color: black;) developer.mozilla.org 사용방법은 사용자 지정속성을 표시하는 : 을 앞에 붙여서 사용 가능 :root{ --base: yellow; --spacing: 10px; --blur: 10; } 선언한 변수에 --로 다 시작되는데 왜..
참고 : https://kingji8life.tistory.com/133 [CSS] 이미지 중심점 바꿔서 회전 시키기 (transform:rotate, transform-origin) 선택자 {transform:rotate(회전값)} : 이미지나 박스에 한하여 회전값 주기. (회전값 단위=deg) 선택자 {transform-origin:중심점 위치 설정} : 회전 시, 회전 축 설정. left, right, top, bottom, center 설.. kingji8life.tistory.com transform-origin: right; transform: rotate(40deg); transform-origin으로 회전 중심점을 선택하여 회전 시킬수있음
.fixed_header{ width: 400px; table-layout: fixed; border-collapse: collapse;} .fixed_header tbody{ display:block; width: 100%; overflow: auto; height: 100px;} .fixed_header thead tr { display: block;} .fixed_header thead { background: black; color:#fff;} .fixed_header th, .fixed_header td { padding: 5px; text-align: left; width: 200px;} -----------------------------------------------------------..