I have a query regarding setting a background image, specifically a red line under the input value.
background-attachment:scroll;
background-color:#FFFFFF;
background-image:url("../images/errorLine.gif");
background-position:left bottom;
background-repeat:repeat-x;
The input value is something like "123; 456; 789;". The red line covers the entire string, with its length matching the width of the input.
Is there a way to only display the red line under "456;"?
Can this be accomplished using CSS?
Your help would be greatly appreciated.
Thanks and regards,
Ryanivanka