“CSS CLIP” Kod odpowiedzi

Zdefiniuj także standardową właściwość „klaskę” dla kompatybilności

background-clip: border-box;
__goldenFrag__

Zakrzusza w tle

// Making text background image
<h1>css animation</h1>
<style>
h1{
  background:url(image.jpg);
  -webkit-background-clip:text;
  color:transparent;
}
</style>
Shirshak kandel

Zakrzusza w tle

/* Keyword values */
background-clip: border-box;
background-clip: padding-box;
background-clip: content-box;
background-clip: text;

/* Global values */
background-clip: inherit;
background-clip: initial;
background-clip: revert;
background-clip: unset;
Chrysler

CSS CLIP

/*This property specifiess how far the background should extend within an element*
Values 
the default-value is border-box
content-box : background extends to the edge of the content box
padding-box: background extends to the inside edge of the border
border-box: background extends behind the border
initial : sets property to default value
*/
Mallan YKSN

Odpowiedzi podobne do “CSS CLIP”

Pytania podobne do “CSS CLIP”

Więcej pokrewnych odpowiedzi na “CSS CLIP” w CSS

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

Przeglądaj inne języki kodu