CSS Responsive web Development

Source: Internet
Author: User

The following CSS content is loaded when the maximum screen width of the device is less than 1024px

@media screen and (max-width:1024px) {
body{
width:1024px;
}
#main {
Background-image:url (img/bg1.jpg);
}
}

All represents all types of devices

@media all and (max-width:1024px) {
body{
width:1024px;
}
#main {
Background-image:url (img/bg1.jpg);
}
}

Shorthand

@media and (max-width:1024px) {
body{
width:1024px;
}
#main {
Background-image:url (img/bg1.jpg);
}
}

Operations can be performed using and, or, not

Determines whether the orientation is vertical

@media and (max-width:1024px) and (orientation:portrait) {
body{
width:1024px;
}
#main {
Background-image:url (img/bg1.jpg);
}
}

<body>

<div id= "Main" >

</div>

</body>

Record it and leave it for later, also convenient for others.

Contact me:[email protected]

2016.7.25

11:38

CSS Responsive web Development

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.