How can I do this(white to transparent linear gradient ) ???
Greetings @riyadif7,
Make a div as big as the parent and position it above the text, then add the following background color:
background: linear-gradient(rgba(255,255,255,.0), white);
You can play around with the gradient by adding %:
background: linear-gradient(rgba(255,255,255,.0) 70%, white);