I want to create a textbox for the username But once he starts typing i need a small image with the requirements of username to be displayed dynamically ..
can anyone help me ??
|
|
Lets say A1 is your text box and X1 is your image:
Oh and I guess it's worth mentioning if you want it just when they focus (click on it) not when they add text you can change " |
|||||||
|
|
You can use the :focus psuedo class on the textbox to add styling when the box has focus. You cannot do what you are asking without javascript though. |
|||
|
|
Depending on the location of the image, can you do something like this: html
and then, using ":focus" and css sibling selector: css
|
|||