26 lines
253 B
CSS
26 lines
253 B
CSS
/* 公共css */
|
|
.center {
|
|
width: 1192px;
|
|
margin: 0 auto;
|
|
height: 100%;
|
|
}
|
|
|
|
.left {
|
|
float: left;
|
|
}
|
|
|
|
.right {
|
|
float: right;
|
|
}
|
|
|
|
.auto {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.relative {
|
|
position: relative;
|
|
}
|
|
|
|
.absolute {
|
|
position: absolute;
|
|
} |