How to make background image not resizable in html?

nulleliten

New Member
\[code\]body { background: url('../../asset/background.jpg') no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}\[/code\]This is my code for an background image. I want the image to be not resizable when I am resizing the browser.
 
Back
Top