문제:
다양한 화면에 적응하는 웹사이트 만들기 크기는 어려울 수 있습니다. 개발자는 이러한 응답성을 얻기 위해 CSS 미디어 쿼리를 구현하는 데 어려움을 겪는 경우가 많습니다.
질문:
한 개발자가 레이아웃 호환을 위한 CSS 미디어 쿼리를 작성하는 데 도움을 구하고 있습니다. 다음 화면으로 크기:
답변:
특정 화면 크기에 대한 미디어 쿼리:
이러한 특정 화면 크기에 대한 미디어 쿼리를 생성하려면 다음 구문을 사용하세요.
@media screen and (max-width: 640px) { /* Styles for screens up to 640px wide */ } @media screen and (max-width: 800px) { /* Styles for screens up to 800px wide */ } @media screen and (max-width: 1024px) { /* Styles for screens up to 1024px wide */ } @media screen and (min-width: 1280px) { /* Styles for screens 1280px wide and larger */ }
추가 고려 사항:
사용 예:
/* Smartphones (portrait and landscape) ----------- */ @media screen and (min-width : 320px) and (max-width : 480px) { /* Styles */ } /* Smartphones (portrait) ----------- */ @media screen and (max-width : 320px) { /* Styles */ } /* iPads (portrait and landscape) ----------- */ @media screen and (min-device-width : 768px) and (max-device-width : 1024px) { /* Styles */ } /* Laptops and desktops ----------- */ @media screen and (min-width : 1224px) { /* Styles */ }
위 내용은 특정 화면 크기에 대한 CSS 미디어 쿼리를 만드는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!