Remove all stylings (border, glow) from textarea

后端 未结 4 530
滥情空心
滥情空心 2020-12-24 00:25

I want to remove the stylings from a textarea and leave it all white without any border or glow, if possible. I\'ve tried with different stuff found here on SO, but nothing

4条回答
  •  眼角桃花
    2020-12-24 01:01

    If you want to remove EVERYTHING :

    textarea {
        border: none;
        background-color: transparent;
        resize: none;
        outline: none;
    }
    

提交回复
热议问题