“Jak używać właściwości tła w CSS” Kod odpowiedzi

Jak używać właściwości tła w CSS

body {
  height: 100vh;
  background: url(relative path or url in double quotes) | linear-gradient()
  background-size: cover | contain | any unit value e.g. 1500px;
  background-attachment: fixed | local | scroll;
  background-position: x-offset(values:left,center,right) y-offset(values:top,center,bottom);
                       /* or single value for both x & y-offset */
  background-repeat: repeat (enabled by default) | no-repeat;
  /* some of them will only work provided height of the container */
  /* That's pretty much it folks */
  /* I can't cover details of each value. You'd have to search it */
}
Tender Turtle

Jak używać właściwości tła w CSS

/*This is an example*/
.example {
  background: url("Yeet");
}
Insert_Name_Here

Odpowiedzi podobne do “Jak używać właściwości tła w CSS”

Pytania podobne do “Jak używać właściwości tła w CSS”

Więcej pokrewnych odpowiedzi na “Jak używać właściwości tła w CSS” w CSS

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

Przeglądaj inne języki kodu