| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- @charset "UTF-8";
- * {
- margin: 0;
- padding: 0;
- list-style: none;
- text-decoration: none;
- box-sizing: border-box;
- }
- /*
- 混合宏
- @mixin 定义一个可以在整个样式表中重复使用的样式
- @include 调用
- */
- .vase {
- font-size: 26px;
- color: plum;
- }
- .box {
- width: 400px;
- height: 500px;
- background: white;
- border-radius: 50px;
- box-shadow: 5px 10px 10px red;
- /* 多行注释 编译后会出现在css中 */
- }
- .box h1 {
- color: #ff0;
- font-size: 70px;
- }
- .box ul li a {
- color: red;
- font-size: 30px;
- font-style: italic;
- }
- .box ul li a:hover {
- color: #ff0;
- }
|