HTML列属性
HTMLのcols属性は、
以下は構文です-
<textarea cols="num">
上記のnumは、テキストエリアの幅です。デフォルト値は20です。
のcols属性を実装する例を見てみましょう。
例
<!DOCTYPE html> <html> <body> <h2>Interview Questions</h2> <p>Why do you want go for the Editor Job Profile? (100 words)</p> <textarea rows="6" cols="70" autofocus> Write the answer in 100 words only... </textarea> <p>What are your weaknesses? (50 words)</p> <textarea rows="4" cols="70" autofocus> Write the answer in 50 words only... </textarea> </body> </html>
出力
-
HTMLスタイル属性
HTMLスタイル属性は、HTMLドキュメントの要素のインラインスタイルを定義します。これはグローバル属性であり、任意のHTML要素で使用できることを意味します。 構文 以下は構文です- <tagname style=”text”></tagname> HTMLスタイルの属性の例を見てみましょう- 例 <!DOCTYPE html> <html> <style> body { color: #000;
-
HTML行属性
HTML行属性は、テキストエリアの表示される高さを定義します HTMLドキュメントの要素。 構文 以下は構文です- <textarea rows=”number”></textarea> HTML行の例を見てみましょう属性- 例 <!DOCTYPE html> <html> <style> body { color: #000; height: 100vh;