HTML
ただし、訪問者はそのコンテンツをコピーできます。
以下は構文です-
<textarea readonly>
の読み取り専用属性を実装する例を見てみましょう。
例
<!DOCTYPE html> <html> <body> <h2>Interview Questions</h2> <p>Q1</p> <textarea rows="6" cols="70" placeholder="Why do you want go for the Editor Job Profile? (100 words)"> </textarea> <p>Q2</p> <textarea rows="6" cols="70" placeholder="Do you have any previous publishing experience? (100 words)"> </textarea> <p>Guidelines to appear for interview:</p> <textarea rows="6" cols="70" readonly> The interviewee should reach at 10AM with the certificates. </textarea> </body> </html>
出力
上記の例では、3つのtextarea-
があります。<p>Q1</p> <textarea rows="6" cols="70" placeholder="Why do you want go for the Editor Job Profile? (100 words)"> </textarea> <p>Q2</p> <textarea rows="6" cols="70" placeholder="Do you have any previous publishing experience? (100 words)"> </textarea> <p>Guidelines to appear for interview:</p> <textarea rows="6" cols="70" readonly> The interviewee should reach at 10AM with the certificates. </textarea>
このテキストエリアの1つは読み取り専用に設定されているため、ユーザーはテキストを追加できません-
<textarea rows="6" cols="70" readonly> The interviewee should reach at 10AM with the certificates. </textarea>
-
HTML値属性
HTML value属性は、HTMLドキュメント内のHTML要素の初期値を定義します。 ボタン、入力、メーター、li、オプション、進行状況に適用できます。 およびparam HTML要素。 構文 以下は構文です- <tagname value=”text”></tagname> HTML値の属性の例を見てみましょう- 例 <!DOCTYPE html> <html> <style> body { color: #000; &n
-
HTML行属性
HTML行属性は、テキストエリアの表示される高さを定義します HTMLドキュメントの要素。 構文 以下は構文です- <textarea rows=”number”></textarea> HTML行の例を見てみましょう属性- 例 <!DOCTYPE html> <html> <style> body { color: #000; height: 100vh;