0
When you set the property background
, in fact you are setting a list of properties with the following values:
background-image: none
background-position: 0% 0%
background-size: auto auto
background-repeat: repeat
background-origin: padding-box
background-clip: border-box
background-attachment: scroll
background-color: transparent
Then you overwrite the value of background-position
To fix this you can:
Invert the order (put the style
ul#album-fotos li
afterward)Put the
!important
after ownershipbackground-position
(method not recommended)Grind
background
forbackground-image
andbackground-repeat
Also put the html code so we can see.
– Leticia Rosa