/* 以下是常见的CSS模块调用 */ body { background-color: #f1f1f1; /* 背景模块 */ color: #333; /* 文本模块 */ font-family: Arial, sans-serif; /* 字体模块 */ margin: 0; /* 布局模块 */ padding: 0; /* 布局模块 */ } h1 { background-color: #333; /* 背景模块 */ color: #fff; /* 文本模块 */ font-size: 28px; /* 字体模块 */ padding: 10px; /* 布局模块 */ text-align: center; /* 布局模块 */ } a { color: #0077cc; /* 颜色模块 */ text-decoration: none; /* 文本模块 */ } .btn { background-color: #0077cc; /* 背景模块 */ border: 2px solid #0077cc; /* 边框模块 */ color: #fff; /* 文本模块 */ cursor: pointer; /* 鼠标交互模块 */ padding: 10px 20px; /* 布局模块 */ text-align: center; /* 布局模块 */ }
通过调用相应的CSS模块,可以快速地为网站添加样式,提高网站的外观和用户体验。
在实际开发中,也可以根据自身的需求编写自定义的CSS模块,方便重用和维护。