I write that in my code:
<textarea id="content" name="content" value="something"></textarea>
I want it to be this way:
but I see this instead:
How can I change it?
I write that in my code:
<textarea id="content" name="content" value="something"></textarea>
I want it to be this way:
but I see this instead:
How can I change it?
You need to put the text like this:
<textarea id="content" name="content" value="something">something</textarea>
or you can do this with placeholder:
<textarea id="content" name="content" value="something" placeholder="something"></textarea>
hope it helped you