TOP /HTML テキストボックス

<input type="text">

幅を指定する
<input type="text" size=10>

初めに表示する文字列又は数値を指定
<input type="text" value="123456789">

入力文字数を制限する
<input type="text" maxlength=10>

書き込みを出来なくする
<input type="text" readonly>

オートコンプリートを無効にする
<input type="text"autocomplete="off">

マウスが乗ったらフォーカスを当てる
<input type="text" onmouseover="this.focus()">

TABキーで移動されなくする
<input type="text" tabindex=-1>
テキストボックス(スタイルシート)
右詰表示
<input type="text" style="text-align:right">

IMEを使えなくする
<input type="text" style="ime-mode:disabled;">

IMEを有効にする
<input type="text" style="ime-mode:active;">

スタイルシートで装飾
<input type="text" style="color:blue;background-color:transparent;border-style:dotted;">
color:blue;で文字色を青
background-color:transparent;で背景を透明
border-style:dotted;で枠を点線(border-style:none;で枠をなし)