W3.CSS 버전


재료

W3.CSS는 2017년에 출시되었습니다.

최신 버전은 2020년 12월 W3.CSS 4.15입니다.

최신 버전은 W3.CSS Downloads 에서 다운로드할 수 있습니다 .

버전 4는 W3Schools의 모든 페이지에서 사용되는 기본 스타일 시트입니다.


W3.CSS - 프로

W3.CSS는 전문가용 버전인 w3pro.css 와 함께 제공됩니다 .

Pro 버전은 정의된 색상이 없기 때문에 더 작고 빠릅니다.

프로 버전은 개발자가 제공하는 테마 또는 기타 색상 클래스를 사용하도록 설계되었습니다.

The pro version can be downloaded from: https://www.w3schools.com/w3css/4/w3pro.css


W3.CSS Pro Template

Demo Template


W3.CSS Pro Colors

With W3.CSS pro you can define your own colors:

Example

<!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>

You can define your colors inline with a <style> tag:

Example

<style>
.w3-amber{color:#000!important;background-color:#ffc107!important}
</style>

Or you can load your own themes:

Example

<link rel="stylesheet" href="/lib/w3-theme-amber.css">

Or you can load your color libraries:

Example

<link rel="stylesheet" href="/lib/w3-colors-2018.css">

Example

<link rel="stylesheet" href="/lib/w3-colors-2017.css">