HTML
以下は構文です-
<textarea autofocus>
例
<!DOCTYPE html> <html> <body> <h2>Interview Questions</h2> <p>Why do you want go for the Technical Writer Job Profile? (100 words)</p> <textarea rows="6" cols="70" autofocus> Write the answer in 100 words only... </textarea> <p>What are your strengths? (50 words)</p> <textarea rows="4" cols="70" autofocus> Write the answer in 50 words only... </textarea> </body> </html>
出力
上記の例では、2つのtextarea-
を設定しています。<textarea rows="6" cols="70" autofocus> Write the answer in 100 words only... </textarea> <p>What are your strengths? (50 words)</p> <textarea rows="4" cols="70" autofocus> Write the answer in 50 words only... </textarea>
オートフォーカスで設定したこれらのテキストエリアの1つ。これで、ページが読み込まれるたびに、フォーカスとカーソルが最初のテキストエリアに自動的に表示されます-
<textarea rows="6" cols="70" autofocus>
-
HTMLオープン属性
HTMLのopen属性は、詳細を定義します HTML要素のコンテンツはHTMLドキュメントで表示(オープン)する必要があります。 構文 以下は構文です- <details open></details> HTMLオープン属性の例を見てみましょう- 例 <!DOCTYPE html> <html> <style> body { color: #000; height: 100vh;
-
HTML行属性
HTML行属性は、テキストエリアの表示される高さを定義します HTMLドキュメントの要素。 構文 以下は構文です- <textarea rows=”number”></textarea> HTML行の例を見てみましょう属性- 例 <!DOCTYPE html> <html> <style> body { color: #000; height: 100vh;