Odcinek 0508

Notes from WTF course

0507:

background:

.page{
  background-image: url('./dog-image.jpg');
}
0 0
< pozycja-y> < pozycja-x>
top right
bottom left
center center
xx% xx%
xxpx xxpx
.content{
  background-image: url('./dog-image.jpg');
  background-attachment: local;
  height: 100px;
  overflow: scroll;
}
.content{
  background-image: url('./dog-image.jpg');
  color: white;
  padding: 30px;
  background-clip: content-box;
}

Gradienty

background:
  url(sweettexture.jpg) /* image */
  top center / 200px 200px /* position / size */
  no-repeat /* repeat */
  fixed /* attachment */
  padding-box /* origin */
  content-box /* clip */
  red; /* color */