HTMLラップ属性
HTML wrap属性は、フォームがHTMLドキュメントで送信されたときにテキスト領域のテキストをどのように折り返すかを定義します。
構文
以下は構文です-
<textarea wrap=”hard | soft”></textarea>
HTMLラップ属性の例を見てみましょう-
例
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 2px; width: 40%; display: block; color: #fff; outline: none; cursor: pointer; margin: 1rem 0; } .show { font-size: 1.5rem; margin: 1rem 0; } </style> <body> <h1>HTML wrap Attribute Demo</h1> <form action='' method="post"> <textarea rows="5" cols="28" wrap="soft">Hi! I'm a text area element with some dummy text.</textarea> <input type="submit" class='btn' value="Submit Form"> </form> <button onclick="set()" class="btn">Show wrap value</button> <div class="show"></div> <script> function set() { document.querySelector('.show').innerHTML = "The value of wrap attribute is " + document.querySelector("textarea").wrap; } </script> </body> </html>
出力
「ラップ値を表示」をクリックします 」ボタンをクリックして、textarea要素のwrap属性の値を表示します:
-
HTMLパターン属性
HTMLパターン属性は、HTML要素の値がHTMLドキュメントで一致する正規表現を定義します。 構文 以下は構文です- <input pattern=”regular expression”> HTMLパターン属性の例を見てみましょう- 例 <!DOCTYPE html> <html> <style> body { color: #000; height: 100vh;
-
HTMLドラッグ可能属性
HTML DOMドラッグ可能属性は、要素がドラッグ可能かどうかを指定するブール値を返す/設定します。 注 −リンクと画像はデフォルトでドラッグ可能です。 HTMLドラッグ可能の例を見てみましょう 属性- 例 <!DOCTYPE html> <html> <head> <title>HTML DOM draggable</title> <style> * { padding: 2px; margin:5px; &n