If I want my textarea to be hidden, how do I do it?

后端 未结 6 1539
执笔经年
执笔经年 2021-01-04 01:00

If I want my textarea to be hidden, how do I do it?

6条回答
  •  星月不相逢
    2021-01-04 01:28

    Everyone is giving you answers, but not much on the reasons. Here you go: if you use the CSS rule visibility:hidden; the text area will be invisible, but it will still take up space. If you use the CSS rule display:none; the textarea will be hidden and it won't reserve space on the screen—no gaps, in other words, where it would have been. Visual example below.

    So you want something like this to be totally hidden:

    
    

    Some text after.


    Textarea with display:none;

    Some text after. Neither height nor margin/padding/layout kept. No other styles visible.


    Textarea with visibility:hidden;

    Some text after. Height and margin/padding/layout kept. No other styles visible.

提交回复
热议问题