I have a div which i have used the following css to generate a bacground:
background: -webkit-linear-gradient(left, #ea1f23, #ea1f23 70%, black 70%, black);
This generates a background which is 70% red and 30% black.
I have then added a transition effect, so when you hover over the element it eases in.
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
-ms-transition: all .3s ease;
transition: all .3s ease;
However there seems to be a jump in betweeen (the transition isnt very smooth). is there a way to remove this?
Please see the below fiddle.