在 HTML 中的表单设置文本换行
使用 wrap 属性在 HTML 中设置文本换行。你可以尝试运行以下代码来实现 wrap 属性 -
示例
<!DOCTYPE html> <html> <body> <form action = ""> <textarea rows = "2" cols = "12" name = "details" wrap = "hard"> This is demo text This is demo text This is demo text This is demo text</textarea><br> <input type = "submit"> </form> </body> </html>
广告