css - Background image in fullscreen -


i use code show image full screen in desktop

<style>  body{   background: url("under-constraction1.jpg")no-repeat fixed 0 0 / cover ;  } </style> 

but in mobile in firefox browser piece of image shown

how can fix it?

use

 body{          background: url("under-constraction1.jpg") no-repeat center center fixed     -webkit-background-size: cover;     -moz-background-size: cover;     -o-background-size: cover;     background-size: cover;  } 

Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -