On the entry into force of background-repeat

use background to bring in the background image. Writing background-repeat: no-repeat; alone for the first time did not take effect. Change it to write after the address and take effect. Why?

the first time it is written as follows, no-repeat does not take effect:

< H1 > banner {< / H1 >
background-image: url(../images/book1.jpg);
backgroud-repeat: no-repeat;
backgroud-size: cover;
width: 100%;

}
effect

:

banner {


}

clipboard.png

Apr.05,2021

backgroud-repeat: no-repeat; backgroud misspelled, one less n

Menu