DIV+CSS表單布局的五個小技巧

來源:互聯網
上載者:User

 DIV+CSS表單布局的五個小技巧可以協助你更靈活的控製表單,使頁面更加滿意。

1、表單文本輸入的移動選擇:

在文本輸入欄中,如果加入了提示,來訪者往往要用滑鼠選取後刪除,再輸入有用的資訊。其實只要加入onMouseOver="this.focus()" onFocus="this.select()" 代碼到 <textarea> 中,一切就會變得簡單多了,如:

 

<textarea name=textarea wrap=virtual rows=2 cols=22 onMouseOver="this.focus()" onFocus="this.select()">站長之家 www.chinaz.com</textarea>

 

類似的,可以加入代碼到<input>。

2、表單輸入單元點擊刪除:

本列同上則作用類似,只是使用滑鼠上略有變化,需要點擊而不像上則的只要滑鼠覆蓋。如:

 

<input type=text name="address" size=19 value="站長之家 www.chinaz.com" onFocus="this.value=''">

 

點擊輸入單元後,提示資訊會刪除,是不是很方便。

3、表單輸入單元的邊框設定:

更改傳統的表單單元邊框,會讓你的首頁生色不少。如:

 

<input type=radio name=action value=subscribe checked style="BORDER-BOTTOM: dashed 1px; BORDER-LEFT: dashed 1px; BORDER-RIGHT: dashed 1px; BORDER-TOP: dashed 1px;background-color: #FEF5C8">

 

其中"style=***"為左右上下和背景色設定,適用於其它單元,請讀者親自試試。

4、表單輸入單元的文字設定:

表單中單元的字型是可以修改的,如:

 

<input type=text name="address" size=19 value="站長之家 www.chinaz.com" style=“font-size:10px”>

 

其中"style=***"為字型和字大小設定。

5、修改表單屬性為快顯視窗:

大多數表單啟用後,會在當前頁面中開啟,影響正常瀏覽。不如修改一下,如:

 

<form method=POST action=url target=_blank>

 

其中"target=_blank"為控制在快顯視窗開啟。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.