如何在 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>
广告