我们在 HTML 中如何显示文本区域的可见宽度?
在 HTML 中使用 cols 属性以显示文本区域的可见宽度。您可以尝试运行以下代码来实现 cols 属性 −
示例
<!DOCTYPE html> <html> <body> <textarea rows="3" cols="40"> This is a demo paragraph. This is a demo paragraph. This is a demo paragraph. This is a demo paragraph. </textarea> </body> </html>
广告