CSS 학습

CSS(Cascading Style Sheet)

캐스캐이딩 스타일 시트에 대한 이야기

기본형태

body{
background-color: blue;
}

html 페이지에 넣기

기본 인클루드 방법

<head>
<link rel="stylesheet" type="text/css" href="주소">
</head>

graident

background gradient

.grandient_background_class {
background: linear-gradient(to top right, #43389F 0%, #4ec6ca 100%);/* 표준. */
background: -webkit-linear-gradient(bottom left, #43389F 0%, #4ec6ca 100%); /* 사파리, 크롬*/
background: -moz-linear-gradient(bottom left, #43389F 0%, #4ec6ca 100%); /* 파이어폭스 */
background: -o-linear-gradient(bottom left, #43389F 0%, #4ec6ca 100%); /* 오페라 */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#43389F', endColorstr='#4ec6ca',GradientType=1 ); /*ie*/
}

참조

  1. [w3schoolstutorial] : https://www.w3schools.com/css/default.asp
  2. [link] : https://developer.mozilla.org/ko/docs/Web/HTML/Element/link
  3. [flex] : https://studiomeal.com/archives/197
  4. [CSS3벤더프리픽스] : https://dolly77.tistory.com/9
  5. [CSS-SPEC­I­FI­CA­TIONS] : https://www.w3.org/Style/CSS/specs.en.html
  6. [CSS-SYNTAX] : https://developer.mozilla.org/ko/docs/Web/CSS/Syntax