mvp.css
个人觉得设计的非常优雅使用的 css 库。
MVP is a minimalist stylesheet for HTML elements.
入门案例
<!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>