Is there an easy way to have an HTML <textarea> alternate its row colors
to improve editing?
I don't mind if the solution is pure CSS or if it requires JavaScript.
|
Is there an easy way to have an HTML I don't mind if the solution is pure CSS or if it requires JavaScript. |
||||
|
|
If I understand correctly that you want the colors alternating WITHIN the textarea (as in each line)? I would suggest the easiest method is to use a background image in your textarea's and have the rows of the alternate colors the same height as the font-size/line-height to create the illusion of alternate rows, then just repeat the background image. Additional Solution However, it seems that using that method, the background doesn't scroll along with each line. The best technique I can come up with is to use a jQuery plugin called 'autoResize' by James Padolsey. What this does is removes the scrollbars and as your text nears the bottom of the Now, that can cause problems since you could potentially have VERY long textareas depending on how much text the user writes but I've created a fix for this. What we can do is wrap the You will have to adjust the width/height/margins/borders/paddings etc accordingly and maybe check for cross browser compatibility, but this should help set you on the right track and get you going. Here is a link to an example I have created using the above method: |
|||||||||||||
|
|
You can use jQuery odd selector. http://api.jquery.com/odd-selector/
|
|||||||||||
|