tech

CSS 미디어 쿼리

/* 빅데스크탑 */
.container {
	width: 100%;
    justify-content: center;
}

.container h1{
	width: auto;
}

@media screen and (max-width:1799px) {
/* 데스크탑 */
}

@media screen and (max-width:1199px) {
/* 타블렛 가로 */
}
@media screen and (max-width:899px) {
/* 모바일 가로, 타블렛 세로 */
}

@media screen and (max-width:599px) {
/* 모바일 세로 */
}

'tech' 카테고리의 다른 글

[컴퓨팅 사고] 정보의 표현  (0) 2021.08.30
[컴퓨팅 사고] 2진법  (0) 2021.08.29
유클리드 알고리즘을 이용한 최대 공약수  (0) 2021.08.17
Docker Copy, Dockerfile  (0) 2021.08.13
Docker CLI  (0) 2021.08.13