Home  >  Article  >  Web Front-end  >  css background image automatically scales according to screen size

css background image automatically scales according to screen size

高洛峰
高洛峰Original
2017-03-27 17:18:284080browse

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>


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!

Statement:
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