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
Post a Comment