郵便番号から住所自動入力の商用版サイトです。
By ピエールソフト 2014.5.17
htmlに1行追加で 住所入力を自動化 できます。

ガイダンス画面のデザイン変更(1)

■デザインの変更を、cssで行ないます。
 →郵番欄に 438 0078 と入力してみよう。
 →デザインを変更して表示します。


デザイン変更のデモ(1)

郵便番号 -
都道府県
住所

[ポイント]
▼cssでは次のように記述しています。
 オウンコーディングより簡単でしょうね。

[cssの記述例]
#autozip {
	background: #f5f5f5 !important;
}
#autozip a {
	background: #f5f5f5 !important;
	color: #333333 !important;
}
#autozip a:hover {
	background: #666666 !important;
	color: #ffffff !important;
}
#zip_header,#zip_count {
	background: #333333 !important;
	color: #f5f5f5 !important;
	padding: 3px 2px !important;
	white-space: nowrap;
}

▲ページの先頭へ