I have some CSS in which in some properties inside CSS definition starts with -webkit prefix
For example, in the following CSS there are one properties prefixed with a -webkit for text
p {
background-image: linear-gradient(to right, #f1c40f, #27ae60);
-webkit-background-clip: text;
background-clip: text;
}