📅  最后修改于: 2023-12-03 15:35:39.380000             🧑  作者: Mango
W3.CSS 是一个用于 Web 设计的 CSS 框架,可帮助开发人员快速地在网站上实现响应式布局和现代外观。该框架由 W3Schools 开发,并拥有许多有用的特性和类,可以通过简单的 HTML 代码进行使用。
W3.CSS 具有以下特点:
以下是 W3.CSS 的一些常用类:
w3-container
:创建一个容器进行布局。w3-row
:创建一个行用于包含列。w3-col
:创建一个列用于分隔内容。w3-button
:创建一个按钮。w3-input
:创建一个输入字段。w3-dropdown-hover
:创建一个悬停下拉列表。w3-modal
:创建一个模态框。w3-tooltip
:创建一个带有提示文本的元素。以下是使用 W3.CSS 创建简单的 Web 页面的示例代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Website</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
</head>
<body>
<div class="w3-container">
<h1>My Website</h1>
<p>Welcome to my website!</p>
<div class="w3-row">
<div class="w3-col w3-half">
<img src="https://www.w3schools.com/w3images/lights.jpg" alt="Lights" style="width:100%">
</div>
<div class="w3-col w3-half">
<h2>About Me</h2>
<p>Hi! I'm a web developer from California. I love creating new things.</p>
<p>Feel free to contact me if you have any questions!</p>
<button class="w3-button w3-blue">Contact Me</button>
</div>
</div>
<div class="w3-dropdown-hover">
<button class="w3-button">Dropdown Menu</button>
<div class="w3-dropdown-content w3-bar-block w3-card-4">
<a href="#" class="w3-bar-item w3-button">Link 1</a>
<a href="#" class="w3-bar-item w3-button">Link 2</a>
<a href="#" class="w3-bar-item w3-button">Link 3</a>
</div>
</div>
<div class="w3-modal">
<div class="w3-modal-content">
<div class="w3-container">
<h2>Modal Title</h2>
<p>This is a modal window. Click the button below to close it.</p>
<button class="w3-button w3-red w3-round-large">Close Modal</button>
</div>
</div>
</div>
<div class="w3-tooltip">
<span class="w3-text">Hover over me!</span>
<div class="w3-tooltip-content">This is a tooltip.</div>
</div>
<form>
<label for="name">Name:</label>
<input type="text" id="name" class="w3-input">
<label for="email">Email:</label>
<input type="email" id="email" class="w3-input">
<label for="message">Message:</label>
<textarea id="message" class="w3-input"></textarea>
<button class="w3-button w3-green">Send Message</button>
</form>
</div>
</body>
</html>
W3.CSS 是一个功能齐全且易于使用的 CSS 框架,可为 Web 开发人员提供快速的解决方案。使用 W3.CSS 可以创建出现代外观的、响应式的 Web 页面,而且具有易于理解的语法和强大的类库,使得它成为从初学者到专业开发人员的理想工具。