Can you help me with Linear Gradient?
Is it feasible to incorporate an actual image instead of just displaying a color like #000000
or #ffffff
?
background-image: -webkit-linear-gradient(30deg, #000000 50%, #ffffff 50%);
In the scenario mentioned above (black for 50% followed by a 30-degree vertical split and then white for another 50%), is there a way to add a border on the right side of the image along the 30-degree divide that separates the image and color?
Thank you!