>  기사  >  웹 프론트엔드  >  CSS 반응형 레이아웃 미디어

CSS 반응형 레이아웃 미디어

巴扎黑
巴扎黑원래의
2017-08-05 13:37:011654검색

일반적인 글쓰기:


다음은 일반적인 반응형 레이아웃의 분류를 요약한 것입니다.



@media screen and (max-width:320px){ 
  #talkFooter .editArea{…… }}
@media screen and (min-width:321px) and (max-width:375px){ 
    #talkFooter .editArea{…… }}
@media screen and (min-width:376px) and (max-width:414px){
 #talkFooter .editArea{…… }}   
@media screen and (min-width:415px) and (max-width:639px){
 #talkFooter .editArea{……}}  
@media screen and (min-width:640px) and (max-width:719px){
 #talkFooter .editArea{……}}   
@media screen and (min-width:720px) and (max-width:749px){
 #talkFooter .editArea{……}}   
@media screen and (min-width:750px) and (max-width:799px){
 #talkFooter .editArea{……}}   
@media screen(min-width:800px){}

위 내용은 CSS 반응형 레이아웃 미디어의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.