Turn off textarea resizing

前端 未结 8 1554
暗喜
暗喜 2021-01-30 03:51

I\'m trying to turn off textarea resizing in my site; right now I\'m using this method:

.textarea {
    clear:left;
    min-width: 267px;
    max-width: 267px;
          


        
8条回答
  •  星月不相逢
    2021-01-30 04:12

    CSS3 can solve this problem. Unfortunately it's only supported on 60% of used browsers nowadays.

    For IE and iOS you can't turn off resizing but you can limit the textarea dimension by setting its width and height.

    /* One can also turn on/off specific axis. Defaults to both on. */
    textarea { resize:vertical; } /* none|horizontal|vertical|both */
    

    See Demo

提交回复
热议问题