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
| .box {
| width: 100%;
| height: 1000px;
| display: flex;
| }
| /*×ó²àdivÑùʽ*/
| .left {
| width: calc(30% - 5px); /*×ó²à³õʼ»¯¿í¶È*/
| height: 100%;
| /* background: #36cfc9;*/
| float: left;
| }
| /*ÍÏ×§ÇødivÑùʽ*/
| .resize {
| cursor: col-resize;
| position: relative;
| background-color: yellow;
| width: 5px;
| height: 300px;
| background-size: cover;
| background-position: center;
| font-size: 32px;
| float: left;
| }
| /*ÍÏ×§ÇøÊó±êÐüÍ£Ñùʽ*/
| .resize:hover {
| background-color: #444444;
| }
| /*ÓÒ²àdiv'Ñùʽ*/
| .mid {
| float: left;
| width: 70%; /*ÓÒ²à³õʼ»¯¿í¶È*/
| height: 100%;
| /*background-color: #b7eb8f;*/
| }
|
|