1
Responsive CSS background images
.myelement {
background: rgb(68, 68, 68) url("images/myimage.jpg") no-repeat scroll center center / cover;
width: 100%;
display: block;
}
@media (min-width: 576px) {
.myelement {
height: 240px;
}
}
@media (min-width: 768px) {
.myelement {
height: 380px;
}
}
@media (min-width: 992px) {
.myelement {
height: 480px;
}
}
@media (min-width: 1200px) {
.myelement {
height: 540px;
}
}
Interserver | Standard & VPS Cloud Hosting | $2.50 /Month
Flexible VPS hosting platform to deploy your online projects.
Economical and balanced between processor cores, memory and storage
rated 1 times
(1)
(0)
comments: 0 / hits: 455
/ 2 years ago, sun, jan 3, 21, 03:39:57
More From
» CSS
Comments
There are no comments for this Snippet yet