📅  最后修改于: 2023-12-03 15:17:39.229000             🧑  作者: Mango
MinCSS 是一种极简的 CSS 框架。使用 MinCSS,可以非常容易地编写简洁、易于维护的 CSS 代码。
<link rel="stylesheet" href="path/to/min.css">
button {
background: #f90;
border: none;
border-radius: 5px;
color: #fff;
cursor: pointer;
font-size: 16px;
padding: 10px 20px;
}
<button>点击</button>
.bg-color {
background-color: #f90;
}
.bg-image {
background-image: url(path/to/image);
}
.bg-position {
background-position: center center;
}
.bg-repeat {
background-repeat: no-repeat;
}
.bg-size {
background-size: cover;
}
.border {
border: 1px solid #ccc;
}
.border-radius {
border-radius: 5px;
}
.font-family {
font-family: Arial, sans-serif;
}
.font-size {
font-size: 16px;
}
.font-weight {
font-weight: bold;
}
.box-sizing {
box-sizing: border-box;
}
.margin {
margin: 10px;
}
.padding {
padding: 10px;
}
.position {
position: absolute;
}
.top {
top: 10px;
}
.right {
right: 10px;
}
.bottom {
bottom: 10px;
}
.left {
left: 10px;
}
MinCSS 是一种非常简洁和易于使用的 CSS 框架,适合初学者和小型项目。如果你只需要基础的样式,那么 MinCSS 可能是你需要的。