CSS background

Background :

  (1) background-color:     Background Color

  (2) background-image:     Background image

  (3) background-repeat:     Tile

  (4) background-attachment:     an associated manner; Scroll scroll; Fixed scroll bar does not vary with movement;

  (5) background-position:     positioning

abbreviation:

  background:color image repeat attachment positon;

 

Background Related:

  (1) background-size:     Background Size

    1) cover;     fill element

  2) contain;     stretched to the maximum

  (2) background-orgin:     background display area

    1) padding-box;     default

    2) border-box;

    3) content-box;

  (3) background-clip:     Background drawing area

    1) border-box;     default

    2) padding-box;

    3) content-box;

  NOTE: Prior to the orgin

High score screen background image processing:

-webkit-image-set

background:-webkit-image-set(

        url('../../assets/[email protected]') 2x,

        url('../../assets/[email protected]') 3x

    ) ;

filter: filter

filter:blur(100px):

Guess you like

Origin www.cnblogs.com/Tractors/p/11079055.html