“CSS IMG” Kod odpowiedzi

Obraz CSS

/* CSS for Desktop */

.country-background-img {
  background: url('https://placeimg.com/1000/695/animals');
  background-repeat: no-repeat;
  background-size: cover;
  height: 695px;
  padding: 60px 30px 0 30px;
  margin-top: 50px;
}


/* Responsive CSS */

.country-background-img {
  height: auto;
  text-align: center;
  background-attachment: fixed;
}
Smoggy Seahorse

CSS IMG SRC

#divID {
    background-image: url("http://imageurlhere.com");
    background-repeat: no-repeat;
    width: auto; /*or your image's width*/
    height: auto; /*or your image's height*/
    margin: 0;
    padding: 0;
}
miletoo

CSS IMG

img {
  height: auto;
  width: 500px;
}
Lovely Locust

Odpowiedzi podobne do “CSS IMG”

Pytania podobne do “CSS IMG”

Więcej pokrewnych odpowiedzi na “CSS IMG” w CSS

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu