Responsive Webpage Design

Source: Internet
Author: User

Responsive page design reference material http://www.qianduan.net/responsive-web-design.html

The principle is to set different display styles based on different browser widths and pages.

Simulate using JS

 <!  Doctype html  > 
< Html >
< Head >
< Title > CSS width </ Title >
< Style Type = "Text/CSS" >
. Divtest {
Border : Solid 2px gray ;
Width : 300px ;
Height : 200px ;
}
. W1200. divtest {
Background-color : Red ;
}
. W900. divtest {
Background-color : Black ;
}
. W400. divtest {
Background-color : Blue ;
}
. W300. divtest {
Background-color : # Eee ;
}
</ Style >
< Script Type = "Text/JavaScript" >
( Function (){
VaR W = Window. Screen. width;
VaR C = '' ;
If (W > 1200 ){
C = ' W1200 ' ;
} Else If (W > 900 ){
C = ' W900 ' ;
} Else If (W > 400 ){
C = ' W400 ' ;
} Else {
C = ' W300 ' ;
}
Document.doc umentelement. classname + = C;
})();
</ Script >
</ Head >
< Body >
< Form ID = "Form1" Runat = "Server" >
< Div >
Width: < Span ID = "Spanwidth" > </ Span >
< Div Class = "Divtest" > </ Div >
</ Div >
</ Form >
</ Body >
</ Html >

Set different HTML classes based on different page widths and different styles based on different. w400 Div {color: red.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.