wangzhibo
4 天以前 10595d8632f959d0954d1939243196f4eed02372
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
.cl-grid {
    box-sizing: border-box;
 
    &::after,
    &::before {
        content: "";
        display: table;
    }
 
    &::after {
        clear: both;
    }
 
    &-item {
        float: left;
        box-sizing: border-box;
        position: relative;
    }
 
    .is-border {
        border: 2rpx solid $cl-color-default;
        border-bottom: 0;
        border-right: 0;
 
        .cl-grid-item {
            &::before,
            &::after {
                content: "";
                position: absolute;
                display: block;
                background-color: $cl-color-default;
            }
 
            &::before {
                bottom: 0;
                left: 0;
                height: 2rpx;
                width: 100%;
            }
 
            &::after {
                right: 0;
                top: 0;
                height: 100%;
                width: 2rpx;
            }
        }
    }
}