Why doesn't the placeholder text show after I type something?
The placeholder only appears when the textarea is empty. Once you type, it disappears to avoid confusion with your input.
š” Placeholder is like a hint that vanishes as soon as you start typing (see render_step 1).
Why can't I resize the textarea horizontally?
The CSS property 'resize: vertical;' restricts resizing to vertical direction only, so horizontal resizing is disabled.
š” Resize controls depend on the 'resize' property (see render_step 3).
Why does the textarea look small even though I set rows and cols?
Rows and cols set size in characters and lines but CSS width and height override those sizes visually.
š” CSS sizing overrides rows/cols (see render_step 2).