/* 定义网页字体 */ font-family: Arial, sans-serif; font-size: 14px; /* 定义颜色 */ color: #333; background-color: #fff; /* 定义边框 */ border: 1px solid #ccc; border-radius: 5px; /* 定义宽度和高度 */ width: 200px; height: 100px; /* 定义位置 */ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); /* 定义动画效果 */ animation: fadeOut 1s ease-in; /* 定义响应式布局 */ @media screen and (max-width: 768px) { /* 在小屏幕上展示不同的样式 */ }
请注意,这些样式不是单独使用的,而是可以组合使用。例如,大家可以同时定义字体、颜色和边框:
/* 定义一个按钮 */ button { font-family: Arial, sans-serif; font-size: 16px; color: #fff; background-color: #007bff; border: 1px solid #007bff; border-radius: 5px; padding: 10px 20px; }
上述样式定义了一个简单的按钮,使用了字体、颜色、背景色、边框、圆角以及内边距。这样大家就可以方便地复用这些样式。