Can the color of a specific portion of a CSS3 linear-gradient be changed using codebehind? For example:
Defined in Site.css:
.MyClass{ background-image: linear-gradient(0deg, #FFFFFF, #000000); }
And used in the markup:
<div class="MyClass">Stuff</div>
I am looking to change only the #000000
color from the codebehind for that specific div.