0
Colores en CSS
Hola! Me gustaría saber si se podría combinar colores en un mismo texto de CSS. Muchas gracias!
4 ответов
+ 2
Did you meant this
<style>
p{
background-image:linear-gradient(to left,blue,yellow,orange,pink);
}
</style>
</head>
<body>
<p>hello world</p>
+ 2
Sorry I think you meant text ,but that just use different Colors for background not text!
+ 1
👍
0
Yes, thanks you!!!!