本章為大家介紹div css頁面版面的五個小技巧,有一定的參考價值,有需要的朋友可以參考一下,希望對你們有幫助。
1、表單文字輸入的移動選擇:
在文字輸入欄中,如果加入了提示,來訪者往往要用滑鼠選取後刪除,再輸入有用的信息。其實只要加入onmouseover="this.focus()" onfocus="this.select()" 程式碼到
<textarea name=textarea wrap=virtual rows=2 cols=22 onmouseover="this.focus()" onfocus="this.select()"> input english..</textarea>
類似的,可以加入程式碼到。
2、表單輸入單元點選刪除:
本列同上則作用類似,只是使用滑鼠上略有變化,需要點選而不像上則的只要滑鼠覆蓋。如:
<input type=text name="address" size=19 value="enter,e-mail..."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="enter,e-mail..." style=font-family:"verdana";font-size:10px >
5.修改表單屬性為彈出視窗:
大多數表單啟動後,會在目前頁面中打開,影響正常瀏覽。不如修改一下,如:
<form method=POST action=url target=_blank>
其中"target=_blank"為控制在彈出視窗開啟。
以上就是div css頁面佈局的五個小技巧的內容,更多相關內容請關注php中文網(www.php.cn)!