Difference between hard wrap and soft wrap?

后端 未结 3 531
一整个雨季
一整个雨季 2020-12-07 12:23

I am in the process of writing a text editor. After looking at other text editors I have noticed that a number of them refer to a \"soft\" versus \"hard\" wrap. What is th

3条回答
  •  暖寄归人
    2020-12-07 12:33

    soft : The text in the textarea is not wrapped when submitted in a form. This is default

    hard : The text in the textarea is wrapped (contains newlines) when submitted in a form. When "hard" is used, the cols attribute must be specified

    Reference: W3Schools

提交回复
热议问题