Home > Web Front-end > CSS Tutorial > css responsive layout-media

css responsive layout-media

巴扎黑
Release: 2017-08-05 13:37:01
Original
1678 people have browsed it

Common writing:


The following summarizes the classification of common responsive layouts:



@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){}
Copy after login

The above is the detailed content of css responsive layout-media. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
css
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template