Question #89

Author: admin
tags: CSS  
If the CSS property background-clip with the value text is used, then what should be additionally taken into account for this property to make sense?
The text must necessarily have a shadow
The text should consist only of Latin letters and digits
The text should be transparent or semi-transparent
The text should be a link
The block must have the position property not set as static
If the text is opaque, then the background simply will not be visible.
<div class="text">
  Some text with fancy color
</div>
.text {
  border: 1px solid black;
  text-align: center;
  width: 600px;
  padding: 30px;
  font-size: 50px;
  font-weight: 900;
  background-image: linear-gradient(to right, #9b6f08, #176e0b, #0b5d82);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
Rate the difficulty of the question:
easyhard