CSS框架是一種用于構建網站和應用程序的模塊化 CSS 樣式表,可以幫助開發者更輕松地組織和管理樣式,提高開發效率和代碼可維護性。下面是一個簡單的 CSS 框架草圖,它提供了基本的樣式布局和響應式布局,可以用于快速構建現代網站和應用程序。
HTML 代碼:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CSS框架草圖</title>
<style>
/* 基本的樣式 */
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
/* 響應式布局 */
.container {
width: 80%;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
/* 標題樣式 */
h1 {
font-size: 28px;
font-weight: bold;
margin-top: 20px;
}
/* 按鈕樣式 */
button {
background-color: #4CAF50;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
/* 文本樣式 */
.text {
font-size: 18px;
line-height: 1.5;
color: #333;
}
/* 圖片樣式 */
max-width: 100%;
height: auto;
margin-bottom: 20px;
}
/* 列表樣式 */
ul {
list-style: none;
padding: 0;
}
li {
margin-bottom: 20px;
}
/* 表單樣式 */
form {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 30px;
}
label {
font-size: 16px;
margin-bottom: 10px;
}
input[type="text"],
input[type="password"] {
width: 100%;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
}
input[type="submit"] {
background-color: #4CAF50;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<h1>歡迎來到我的網站</h1>
<button>創建新網站</button>
<form>
<label for="name">用戶名:</label>
<input type="text" id="name" name="name">
<label for="password">密碼:</label>
<input type="password" id="password" name="password">
<input type="submit" value="提交">
</form>
</div>
</body>
</html>
上面的 HTML 代碼定義了一個基本的 CSS 框架,包括基本的樣式、響應式布局、標題樣式、按鈕樣式、文本樣式和圖片樣式。這個框架提供了基本的樣式布局,可以用于快速構建現代網站和應用程序。使用 CSS 框架草圖,可以更快速地構建網站和應用程序,并使其更具有可讀性和可維護性。