Archive

Archive for July 10, 2009

Remove spacing in textarea

July 10, 2009 ppshein Leave a comment

It’s simple problem for web developers. Sometimes, such problem make us to stop our progress by finding how to solve these problems. This problem is, when we cursor in our textarea box, this cursor isn’t arrived to left align, it stays at center or somewhere else when we create our textarea box as so:

<textarea name=”mytextarea”>
Here is Value….
</textarea>

But, how to solve this problem is kinda simple. Just do so.

<textarea>Here is value</textarea>

How? It’s simple, isn’t it?

Categories: Informations, html Tags: ,