size属性

input要素のsize属性は、入力欄の幅を文字数で指定する属性。

ブラウザ対応

構文

<input size="文字数">

初期設定値は、20である。

size属性に対応しているinput要素のタイプ(type属性値)

サンプルコード

1行テキスト入力欄

<input type="text" size="50">

検索用テキスト入力欄

<input type="search" size="30">

パスワード入力欄

<input type="password" size="20">

サンプル

HTMLソースコード

<p>
	<label>
		1行テキスト入力欄:<br>
		<input type="text" name="sampleText" size="50">
	</label>
</p>
<p>
	<label>
		検索用テキスト入力欄:<br>
		<input type="search" name="sampleSearch" size="30">
	</label>
</p>
<p>
	<label>
		パスワード入力欄:<br>
		<input type="password" name="samplePassword" size="20">
	</label>
</p>

実際の表示