w3.css
버전
W3.CSS는 2017년에 출시되었다.
최신 버전은 2020년 12월 W3.CSS 4.15다.
최신 버전은 W3.CSS 다운로드 에서 다운로드할 수 있다.
⭐ 버전 4는 W3Schools의 모든 페이지에서 사용되는 기본 스타일 시트다.
W3.CSS – 프로
W3.CSS는 전문 버전인 w3pro.css 와 함께 제공된다.
프로 버전은 정의된 색상이 없기 때문에 더 작고 빠르다.
프로 버전은 개발자가 제공하는 테마 또는 기타 색상 클래스를 사용하도록 설계되었다.
프로 버전은 https://www.w3schools.com/w3css/4/w3pro.css 에서 다운로드할 수 있다.
W3.CSS 프로 색상
W3.CSS pro를 사용하면 자신만의 색상을 정의할 수 있다.
예제
<!DOCTYPE html> <html> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3pro.css"> <!-- Colors here --> <body> <!-- Content here --> </body> </html>
<style> 태그를 사용하여 색상을 인라인으로 정의할 수 있다.
<style> .w3-amber{color:#000!important;background-color:#ffc107!important} </style>
기본 예시
예제 보기또는 자신만의 테마를 로드할 수도 있다.
<link rel="stylesheet" href="/lib/w3-theme-amber.css">
기본 예시
예제 보기또는 색상 라이브러리를 로드할 수 있다.
<link rel="stylesheet" href="/lib/w3-colors-2018.css">
기본 예시
예제 보기
<link rel="stylesheet" href="/lib/w3-colors-2017.css">
기본 예시
예제 보기참고
W3C School - W3.CSS Versions