화면 크기에 따라 적용할 스타일을 바꾸는 방법
2936 단어 CSS
이용 상황
묘사 방법
장치 너비로 적용된 CSS를 CSS 파일에 직접 쓰기
qiita.rb@media screen and (min-width:横幅サイズ) {
."クラス名"{
}
}
/* 記述例 */
@media screen and (min-width:480px) and (max-width:768px) {
.sample{
/* ここに適用したいCSSを記載 */
}
}
장치 너비로 로드된 CSS 변경
qiita.rb<link rel="stylesheet" href="style.css" media="screen and (max-width:横幅サイズ)">
<!-- 記述例 -->
<link rel="stylesheet" href="style.css" media="screen and (max-width:1040px)">
Tips
@media screen and (min-width:横幅サイズ) {
."クラス名"{
}
}
/* 記述例 */
@media screen and (min-width:480px) and (max-width:768px) {
.sample{
/* ここに適用したいCSSを記載 */
}
}
<link rel="stylesheet" href="style.css" media="screen and (max-width:横幅サイズ)">
<!-- 記述例 -->
<link rel="stylesheet" href="style.css" media="screen and (max-width:1040px)">
/*縦向き*/
@media screen and (orientation:portrait){
.sample{
}
}
/*横向き*/
@media screen and (orientation:landscape){
.sample{
}
}
장치 크기 표준
디바이스
크기
스마트폰
480px
태블릿 PC
768px
PC
1040px
Reference
이 문제에 관하여(화면 크기에 따라 적용할 스타일을 바꾸는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/AquaMeria/items/3577f4ea934fa7bd4c10
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(화면 크기에 따라 적용할 스타일을 바꾸는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/AquaMeria/items/3577f4ea934fa7bd4c10텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)