jquery - how to keep the background image height same throughout all page width? -


the background image width 1579px, beyond if stretch browser 1920px, background image height changes, though have given fixed div width(650px). how can keep background height same throughout page widths?

css:

.blue_bg1{         background: url("../images/hero-bg-espresso.jpg") no-repeat;     height: 650px;     background-position: center center;     background-size: 100% auto;     width: 100%; } 

use cover property. so:

.blue_bg1 {  background-size: cover; } 

Comments

Popular posts from this blog

javascript - How to synchronize the Three.js and HTML/SVG coordinate systems (especially w.r.t. the y-axis)? -

javascript - How do I find how many occurences are there of a highlighted string, and which occurence is it? -

java - Reading data from multiple zip files and combining them to one -