css background image automatically scales according to screen size

高洛峰
Release: 2017-03-27 17:18:28
Original
4082 people have browsed it

css background image automatically scales according to screen size

css background image automatically scales according to screen size

代码:

<style>
html,body{margin:0px;padding:0px;}
#background { position: fixed;top: 0;left: 0;width: 100%;height: 100%;overflow: hidden;background-color: #211f1f; display:none\8;}
#background .bg-photo {position: absolute;top: 0;left: 0;width: 100%;height: 100%;display: none;overflow: hidden;-webkit-background-size: cover !important;-moz-background-size: cover !important;-o-background-size: cover !important;background-size: cover !important;}
#background .bg-photo-1 {  url(1.jpg ) no-repeat center center;}
#background-ie { position: fixed;top: 0;left: 0;width: 100%;height: 100%;overflow: hidden;background-color: #211f1f;}
</style>
<div id="background">
    <div class="bg-photo bg-photo-1" style="display: block;"></div>
</div>
Copy after login


The above is the detailed content of css background image automatically scales according to screen size. 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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!