|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
你用什么用的熟练就用什么,讲究的是效率,客户永远不管你用什么,页面就要好看,功能就要好用,还有时间和成本的问题。
关于表单,很经常使用。可是在webstandard建站的时分,他的排版常常让人忘记,到了真正用到的时分就发明让人头疼,固然我也碰到过。我如今要先容一个用<fieldset></label>标签制造大度并且详细亲和力的表单的办法。
基础的xHTML:
<h3>已注册用户登录</h3>
<formaction=""method="post"name="apLogin"id="apLogin">
<fieldset>
<legend>用户登录</legend>
<div>
<labelfor="Name">用户名</label>
<inputtype="text"name="Name"id="Name"size="18"maxlength="30"/><br/>
</div>
<div>
<labelfor="password">暗码</label>
<inputtype="password"name="password"id="password"size="18"maxlength="15"/><br/>
</div>
<divclass="cookiechk">
<label><inputtype="checkbox"name="CookieYN"id="CookieYN"value="1"/><ahref="#"title="选择是不是纪录您的信息">记着我</a></label>
<inputname="login791"type="submit"class="buttom"value="登录"/>
</div>
<divclass="forgotpass"><ahref="#">您健忘暗码?</a></div>
</fieldset>
</form>
看了代码,发明标单形貌笔墨都在<label></label>中,只需让<label></label>标签浮动左对齐,fieldset包括的<div>扫除浮动,就能够完成我们罕见的那类结构。
上面是基础的CSS:
<!DOCTYPE<ahref="http://www.blue1000.com/bkhtml/c22/"title="HTML/JavaScript教程">HTML</a>PUBLIC"-//W3C//DTDX<ahref="http://www.blue1000.com/bkhtml/c22/"title="HTML/JavaScript教程">HTML</a>1.0Strict//EN""http://www.w3.org/TR/x<ahref="http://www.blue1000.com/bkhtml/c22/"title="HTML/JavaScript教程">HTML</a>1/DTD/x<ahref="http://www.blue1000.com/bkhtml/c22/"title="HTML/JavaScript教程">HTML</a>1-strict.dtd"><<ahref="http://www.blue1000.com/bkhtml/c22/"title="HTML/JavaScript教程">HTML</a><ahref="http://www.blue1000.com/bkhtml/c21/"title="XML教程">XML</a>ns="http://www.w3.org/1999/x<ahref="http://www.blue1000.com/bkhtml/c22/"title="HTML/JavaScript教程">HTML</a>"><head><metahttp-equiv="Content-Type"content="text/<ahref="http://www.blue1000.com/bkhtml/c22/"title="HTML/JavaScript教程">HTML</a>;charset=gb2312"/><title>Formdemo</title><styletype="text/<ahref="http://www.blue1000.com/bkhtml/c23/"title="CSS教程">CSS</a>"><!--body{font-family:Arial,Helvetica,sans-serif;font-size:12px;color:#666666;background:#fff;text-align:center;}*{margin:0;padding:0;}a{color:#1E7ACE;text-decoration:none;}a:hover{color:#000;text-decoration:underline;}h3{font-size:14px;font-weight:bold;}pre,p{color:#1E7ACE;margin:4px;}input,select,textarea{padding:1px;margin:2px;font-size:11px;}.buttom{padding:1px10px;font-size:12px;border:1px#1E7ACEsolid;background:#D0F0FF;}#formwrapper{width:450px;margin:15pxauto;padding:20px;text-align:left;border:1px#1E7ACEsolid;}fieldset{padding:10px;margin-top:5px;border:1pxsolid#1E7ACE;background:#fff;}fieldsetlegend{color:#1E7ACE;font-weight:bold;padding:3px20px3px20px;border:1pxsolid#1E7ACE;background:#fff;}fieldsetlabel{float:left;width:120px;text-align:right;padding:4px;margin:1px;}fieldsetdiv{clear:left;margin-bottom:2px;}.enter{text-align:center;}.clear{clear:both;}--></style></head><body><divid="formwrapper"><h3>已注册用户登录</h3><formaction=""method="post"name="apLogin"id="apLogin"><fieldset><legend>用户登录</legend><div><labelfor="Name">用户名</label><inputtype="text"name="Name"id="Name"size="18"maxlength="30"/><br/></div><div><labelfor="pass<ahref="http://www.blue1000.com/bkhtml/c117/"title="Word教程">word</a>">暗码</label><inputtype="pass<ahref="http://www.blue1000.com/bkhtml/c117/"title="Word教程">word</a>"name="pass<ahref="http://www.blue1000.com/bkhtml/c117/"title="Word教程">word</a>"id="pass<ahref="http://www.blue1000.com/bkhtml/c117/"title="Word教程">word</a>"size="18"maxlength="15"/><br/></div><divclass="cookiechk"><label><inputtype="checkbox"name="CookieYN"id="CookieYN"value="1"/><ahref="#"title="选择是不是纪录您的信息">记着我</a></label><inputname="login791"type="submit"class="buttom"value="登录"/></div><divclass="forgotpass"><ahref="#">您健忘暗码?</a></div></fieldset></form><br/><h3>未注册创立帐户</h3><formaction=""method="post"name="apForm"id="apForm"><fieldset><legend>用户注册</legend><p><strong>您的电子邮箱不会被发布进来,可是必需填写.</strong>在您注册之前请先仔细浏览服务条目.</p><div><labelfo</p>12下一页
对相应的代码做一些简单的修改,就可以改变同一页面的不同部分,或者页数不同的网页的外观和格式。 |
|