mvp.css
个人觉得设计的非常优雅使用的 css 库。
MVP is a minimalist stylesheet for HTML elements.
入门案例
[html]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36<!DOCTYPE html>
<html lang="zh">
<head>
<link rel="icon" href="https://via.placeholder.com/70x70">
<link rel="stylesheet" href="https://andybrewer.github.io/mvp/mvp.css">
<meta charset="utf-8">
<meta name="description" content="My description">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My title</title>
</head>
<body>
<main>
<section>
<header>
<h2>Section Heading</h2>
</header>
<aside>
<p>NOTHING NOTHING NOTHING NOTHING NOTHING NOTHING NOTHING NOTHING NOTHING NOTHING</p>
</aside>
</section>
<section>
<p>
<a href="#"><i>变换</i></a>
<a href="#"><b>复制</b></a>
</p>
</section>
</main>
</body>
</html>