I am using a simple JS here:
var person = prompt("how are you feeling today?", "");
And I would like the text input area (NOT the whole box, ONLY the area where you type in the text) to be bigger... like a comment section.
Any ideas please?
I am using a simple JS here:
var person = prompt("how are you feeling today?", "");
And I would like the text input area (NOT the whole box, ONLY the area where you type in the text) to be bigger... like a comment section.
Any ideas please?
The text input box here is supplied by the browser of the client and therefore cannot be changed in any way with CSS styling. You could instead create a custom popup which is part of your website, allowing you to style it however you would like.