How to make an image as background for web page, regardless of the screen size displaying this web page? I want to display it properly. How?
.bbg { /* The image used */ background-image: url('...'); /* Full height */ height: 100%; /* Center and scale the image nicely */ background-position: center; background-repeat: no-repeat; background-size: cover; }
. . . . . .