Media Query를 사용하여 데스크톱, 태블릿 및 모바일을 타겟팅하는 방법은 무엇입니까?
4223 단어 queriescssresponsivemedia
미디어 쿼리는 화면 크기와 해상도가 다른 다양한 장치에 스타일 시트를 제공하는 데 널리 사용되는 방법입니다. 여러 장치에서 웹 사이트의 모양을 변경하는 데 사용됩니다. 미디어 쿼리는 미디어 유형과 참 또는 거짓이 될 수 있는 하나 이상의 표현식으로 구성됩니다. 제공된 미디어가 콘텐츠를 보는 장치 유형과 일치하면 쿼리는 true를 반환합니다. 미디어 쿼리가 true를 반환하면 스타일 시트가 사용됩니다.
다양한 장치의 화면 해상도는 다음과 같습니다.
통사론:
@media( media feature ) {
// CSS Property
}
css 파일
style.css
이 있다고 가정합니다.
/* Media Query for Mobile Devices */
@media (max-width: 480px) {
body {
background-color: red;
}
}
/* Media Query for low resolution Tablets, Ipads */
@media (min-width: 481px) and (max-width: 767px) {
body {
background-color: yellow;
}
}
/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 768px) and (max-width: 1024px){
body {
background-color: blue;
}
}
/* Media Query for Laptops and Desktops */
@media (min-width: 1025px) and (max-width: 1280px){
body {
background-color: green;
}
}
/* Media Query for Large screens */
@media (min-width: 1281px) {
body {
background-color: white;
}
}
Reference
이 문제에 관하여(Media Query를 사용하여 데스크톱, 태블릿 및 모바일을 타겟팅하는 방법은 무엇입니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/pmutua/how-to-target-desktop-tablet-and-mobile-using-media-query--15n7텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)