HTML标签
<!-->
<!DOCTYPE>
<a>
<abbr>
<acronym>
<address>
<applet>
<area>
<article>
<aside>
<audio>
<b>
<base>
<basefont>
<bdi>
<bdo>
<big>
<blockquote>
<body>
<br>
<button>
<canvas>
<caption>
<center>
<cite>
<code>
<col>
<colgroup>
<command>
<datalist>
<dd>
<del>
<details>
<dfn>
<dialog>
<dir>
<div>
<dl>
<dt>
<em>
<embed>
<fieldset>
<figcaption>
<figure>
<font>
<footer>
<form>
<frame>
<frameset>
<head>
<header>
<hgroup>
<h1> - <h6>
<hr>
<i>
<iframe>
<img>
<input>
<ins>
<kbd>
<keygen>
<label>
<legend>
<li>
<link>
<map>
<mark>
<menu>
<meta>
<meter>
<nav>
<noframes>
<noscript>
<object>
<ol>
<optgroup>
<option>
<output>
<p>
<param>
<pre>
<html>
<progress>
<q>
<rp>
<rt>
<ruby>
<s>
<samp>
<script>
<section>
<select>
<small>
<source>
<span>
<strike>
<strong>
<style>
<sub>
<summary>
<sup>
<table>
<tbody>
<td>
<textarea>
<tfoot>
<th>
<thead>
<time>
<title>
<tr>
<track>
<tt>
<u>
<ul>
<var>
<video>
<wbr>
wrap
HTML <textarea> wrap 属性
实例
带有 wrap="hard" 的文本区域将在表单提交时包含换行符(如果有换行符):
<textarea rows="2" cols="20" wrap="hard">
w3cschool布布教程提供了最全的web技术教程。
</textarea>
w3cschool布布教程提供了最全的web技术教程。
</textarea>
浏览器支持
所有主流浏览器都支持 wrap 属性。
定义和用法
wrap 属性规定在表单提交时文本区域中的文本是如何换行的。
HTML 4.01 与 HTML5之间的差异
wrap 属性是 HTML5 中 <textarea> 标签的新属性。
语法
<textarea wrap="soft|hard">
属性值
值 | 描述 |
---|---|
soft | 在表单提交时,textarea 中的文本不换行。默认。 |
hard | 在表单提交时,textarea 中的文本换行(包含换行符)。当使用 "hard" 时,必须指定 cols 属性。 |