글
css 해상도 별 size 변경
jquery or css
2020. 12. 22. 23:04
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.linebook {
position: absolute;
left:50%;
top:20%;
border-left: thick solid #666666;
}
@media(max-width:765px) {
.linebook {
position: absolute;
left:50%;
top:20%;
border-left: thick solid #666666;
border-width:0px;
}
}
|
'jquery or css' 카테고리의 다른 글
bootstrap 모달 팝업 창 hide show (0) | 2020.12.22 |
---|