I am trying to set a background-image to stretch to the full extent of a <div>
's width and height. The <div>
will be of variable size, so I am using background-size: cover;
background: url("../images/bkgnd-sidebar.png") no-repeat left top cover;
I cannot figure out how to place it in this shorthand notation and have it work. If I list each property independently, it works fine, but I was hoping for an all-in-one solution.
This works, but is not preferred:
background-size:cover;
background-image:url('../images/bkgnd-sidebar.png');
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…