`
caco
  • 浏览: 7853 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
最近访客 更多访客>>
社区版块
存档分类
最新评论

css form

阅读更多
      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"

      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

      <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

      <head>

      <title>A CSS-based Form Template</title>

      <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
      <style type="text/css">
      /* General styles */
      body { margin: 0; padding: 0; font: 80%/1.5 Arial,Helvetica,sans-serif; color: #111; background-color: #FFF; }
      h2 { margin: 0px; padding: 10px; font-family: Georgia, "Times New Roman", Times, serif; font-size: 200%; font-weight: normal; color: #FFF; background-color: #CCC; border-bottom: #BBB 2px solid; }
      p#copyright { margin: 20px 10px; font-size: 90%; color: #999; }
      /* Form styles */
      div.form-container { margin: 10px; padding: 5px; background-color: #FFF; border: #EEE 1px solid; }
      p.legend { margin-bottom: 1em; }
      p.legend em { color: #C00; font-style: normal; }
      div.errors { margin: 0 0 10px 0; padding: 5px 10px; border: #FC6 1px solid; background-color: #FFC; }
      div.errors p { margin: 0; }
      div.errors p em { color: #C00; font-style: normal; font-weight: bold; }
      div.form-container form p { margin: 0; }
      div.form-container form p.note { margin-left: 170px; font-size: 90%; color: #333; }
      div.form-container form fieldset { margin: 10px 0; padding: 10px; border: #DDD 1px solid; }
      div.form-container form legend { font-weight: bold; color: #666; }
      div.form-container form fieldset div { padding: 0.25em 0; }
      div.form-container label,
      div.form-container span.label { margin-right: 10px; padding-right: 10px; width: 150px; display: block; float: left; text-align: right; position: relative; }
      div.form-container label.error,
      div.form-container span.error { color: #C00; }
      div.form-container label em,
      div.form-container span.label em { position: absolute; right: 0; font-size: 120%; font-style: normal; color: #C00; }
      div.form-container input.error { border-color: #C00; background-color: #FEF; }
      div.form-container input:focus,
      div.form-container input.error:focus,
      div.form-container textarea:focus { background-color: #FFC; border-color: #FC6; }
      div.form-container div.controlset label,
      div.form-container div.controlset input { display: inline; float: none; }
      div.form-container div.controlset div { margin-left: 170px; }
      div.form-container div.buttonrow { margin-left: 180px; }
      </style>
      </head>
      <body>
      <div id="wrapper">
      <h2>A CSS-based Form Template</h2>
      <div class="form-container">
      <p>More information about this template could be found in <a href="http://nidahas.com/2006/12/06/forms-markup-and-css-revisited/" title="Nidahas: Forms markup and CSS - Revisited">this blog article</a>.</p>
      <div class="errors">
      <p><em>Oops... the following errors were encountered:</em></p>
      <ul>
      <li>Username cannot be empty</li>
      <li>Country cannot be empty</li>
      </ul>
      <p>Data has <strong>not</strong> been saved.</p>
      </div>
      <form action="#" method="post">
      <p class="legend"><strong>Note:</strong> Required fields are marked with an asterisk (<em>*</em>)</p>
      <fieldset>
      <legend>User Details</legend>
      <div><label for="uname" class="error">Username <em>*</em></label> <input id="uname" type="text" name="uname" value="" class="error" /></div>
      <div><label for="email">Email Address </label> <input id="email" type="text" name="email" value="" />
      <p class="note">We will never sell or disclose your email address to anyone. <strong>This is an example of a note for an input field.</strong></p>
      </div>
      <div><label for="fname">First Name <em>*</em></label> <input id="fname" type="text" name="fname" value="" size="50" /></div>
      <div><label for="lname">Last Name </label> <input id="lname" type="text" name="lname" value="" size="50" /></div>
      </fieldset>
      <fieldset>
      <legend>Contact Information</legend>
      <div><label for="address1">Address 1 <em>*</em></label> <input id="address1" type="text" size="50" /></div>
      <div><label for="address2">Address 2</label> <input id="address2" type="text" size="50" /></div>
      <div><label for="country" class="error">Country <em>*</em></label> <input id="country" type="text" name="country" value="" class="error" size="12" />
      <p class="note">Errors could be highlighted by giving an <code>error</code> class to the input field, as seen here.</p>
      </div>
      <div><label for="telephone">Telephone</label> <input id="telephone" type="text" size="3" /> - <input type="text" size="3" /> - <input type="text" size="4" />
      <p class="note">(###) - ### - ####</p>
      </div>
      </fieldset>
      <fieldset>
      <legend>Submission</legend>
      <div><label for="year">Year (YYYY) <em>*</em></label> <input id="year" type="text" name="year" value="" size="4" maxlength="4" /></div>
      <div><label for="date">Month (MM)</label> <input id="date" type="text" name="date" value="" size="4" maxlength="2" /></div>
      </fieldset>
      <fieldset>
      <legend>Preferences</legend>
      <div>
      <label for="type">Type <em>*</em></label>
      <select id="type">
      <optgroup label="Type of Whatever">
      <option>Corporate</option>
      <option>Individual</option>
      </optgroup>
      </select>
      </div>
      <div class="controlset">
      <span class="label">User Status <em>*</em></span>
      <input name="approved" id="approved" value="1" type="checkbox" /> <label for="approved">Approved</label>
      <input name="pending" id="pending" value="1" type="checkbox" /> <label for="pending">Pending Applications</label>
      <input name="actives" id="actives" value="1" type="checkbox" /> <label for="actives">Active Service</label>
      </div>
      <div class="controlset">
      <span class="label">Preferred Location</span>
      <input name="radio1" id="radio1" value="1" type="radio" /> <label for="radio1">Option 1</label>
      <input name="radio1" id="radio2" value="1" type="radio" /> <label for="radio2">Option 2</label>
      <input name="radio1" id="radio3" value="1" type="radio" /> <label for="radio3">Option 3</label>
      </div>
      <div class="controlset">
      <span class="label">Something Else <em>*</em></span>
      <div>
      <input name="approved" id="check1" value="1" type="checkbox" /> <label for="check1">Some Option 1</label> <br />
      <input name="pending" id="check2" value="1" type="checkbox" /> <label for="check2">Some Option 2</label> <br />
      <input name="actives" id="check3" value="1" type="checkbox" /> <label for="check3">Some Option 3</label> <br />
      </div>
      </div>
      </fieldset>
      <fieldset>
      <legend>Profile</legend>
      <div>
      <label for="desc">Description <em>*</em></label>
      <textarea id="desc" name="desc" cols="30" rows="4"></textarea>
      </div>
      <div>
      <label for="info">Additional Info </label>
      <textarea id="info" name="info" cols="40" rows="5"></textarea>
      </div>
      </fieldset>
      <div class="buttonrow">
      <input type="submit" value="Save" class="button" />
      <input type="button" value="Discard" class="button" />
      </div>
      </form>
      </div><!-- /form-container -->
      <p id="copyright">Created by <a href="http://nidahas.com/">Prabhath Sirisena</a>. This stuff is in public domain.</p>
      </div><!-- /wrapper -->
      </body>
      </html>

分享到:
评论

相关推荐

    css美化form

    通过css来美化form。

    css的很漂亮的form样式

    本主题聚焦于使用CSS来创建美观的表单(form)样式。表单是网页中不可或缺的一部分,常用于收集用户信息,如登录、注册或联系表单。下面我们将详细探讨如何利用CSS实现令人印象深刻的form样式。 首先,我们看到`...

    CSS实现表单元素透明效果

    在网页设计中,CSS(层叠样式表)是一种强大的工具,用于控制网页元素的样式、布局和呈现方式。本文将详细讲解如何使用CSS实现表单元素的透明效果,以达到吸引用户注意力、提升网页视觉效果的目的。 首先,理解透明...

    html+css登录页面

    &lt;form&gt; 用户名:&lt;/label&gt;&lt;br&gt; &lt;input type="text" id="username" name="username"&gt;&lt;br&gt; 密码:&lt;/label&gt;&lt;br&gt; &lt;input type="password" id="password" name="password"&gt;&lt;br&gt; 登录"&gt; &lt;/form&gt; ``` 其次,CSS...

    HTML5&CSS3网页制作:CSS控制表单样式.pptx

    尤其是在处理表单元素时,CSS3 提供了强大的样式控制,使得我们可以定制化表单的外观,提高用户体验。本讲座主要探讨了如何使用 CSS3 来控制 HTML5 表单的样式,包括字体、边框、背景和内边距等方面。 首先,我们来...

    css 网页全套模板

    "css 网页全套模板"是一个包含多种常见网页元素样式的集合,如form表单、按钮、表格、导航栏和头像框等,旨在为开发者提供快速构建美观网页的基础框架。 1. **CSS Form表单**:表单是网页中收集用户信息的重要工具...

    html5+css3实现酷炫的form表单

    HTML5和CSS3是现代网页开发的两大核心技术,它们为创建功能强大且视觉效果丰富的form表单提供了无限可能。在本教程中,我们将探讨如何利用这两者的优势来设计和实现酷炫的form表单。 首先,HTML5引入了新的表单元素...

    html,css和js写的登录与注册界面

    通过CSS,我们可以设置字体、颜色、大小、间距、布局等样式,使得登录界面更加美观且符合设计需求。例如,为上述表单添加一些基本样式: ```css form { display: flex; flex-direction: column; align-items: ...

    CSS学生档案表单样式代码.rar

    这个名为"CSS学生档案表单样式代码"的压缩包文件,显然是为了实现一个专门用于记录学生档案信息的表单界面,提供了对应的CSS样式代码。下面,我们将深入探讨与这个主题相关的知识点。 首先,表单(Form)是网页中...

    【前端】利用HTML标签 实现简单用户登录界面【HTML+CSS+JavaScript(JS)】

    在实现登录界面时,我们通常会用到`&lt;form&gt;`标签来创建表单,它包含了用户的输入字段。例如,可以使用`&lt;input&gt;`标签来创建用户名和密码的输入框,代码示例如下: ```html &lt;form&gt; 用户名: ...

    CSS实用工具

    #### 九、CSS Form Codemaker **CSS Form Codemaker** 是一款HTML/CSS表单生成器,可以创建美观且具有良好布局的表单样式。它支持多种表单元素的自定义设置,如文本框、复选框、单选按钮等,极大地简化了表单设计...

    学生档案录入表单样式CSS代码

    本案例中的"学生档案录入表单样式CSS代码"旨在创建一个功能完备且美观的表单界面,用于记录和验证学生信息。 首先,我们关注到这个表单的两个关键特性:手机号和邮箱的自动验证。在HTML5中,我们可以使用内置的输入...

    Html+Css+js+jquery实现简单页面的登录

    - `&lt;form&gt;`:定义一个表单,包含用户输入信息的字段。 - `&lt;input&gt;`:创建输入字段,如用户名和密码框,类型可以设置为`type="text"`(用户名)和`type="password"`(密码)。 - `&lt;label&gt;`:为输入字段提供描述,提高...

    日志选择器HTML/css

    例如,你可以使用`&lt;form&gt;`标签来定义一个表单,`&lt;input&gt;`标签创建日期选择器,以及`&lt;button&gt;`创建提交按钮。 ```html &lt;form&gt; 选择日期: 筛选 &lt;/form&gt; ``` **CSS美化** CSS(Cascading Style Sheets)用于控制...

    通过css实现表单form的美化.

    ### 通过CSS实现表单form的美化 在Web开发中,表单的美观与用户体验息息相关。本文档将详细介绍如何利用CSS来美化一个HTML表单,包括但不限于:输入框(`&lt;input&gt;`)、单选按钮(`&lt;input type="radio"&gt;`)、复选框...

    这是一篇分析html css js网页设计的文章

    - **盒模型**:CSS中的盒模型定义了元素的尺寸计算方式,包括内容(content)、内边距(padding)、边框(border)和外边距(margin)四个部分。通过调整这些值,可以精确控制元素的布局和间距。 - **媒体查询**:媒体查询是...

    前端简单的注册登录(html+css+javascript+jquery+axios)实现

    在`css`文件夹中的CSS文件中,可以设置输入框、按钮等元素的外观,如边框、背景色、字体等。例如: ```css form { display: flex; flex-direction: column; align-items: center; } input { margin-bottom: 10...

    css常用样式

    ### CSS常用样式详解 在网页开发中,CSS(层叠样式表)是必不可少的一部分,它用于定义HTML元素的样式和布局。本文将详细介绍一个典型的CSS样式文件中的各个部分及其功能,帮助开发者更好地理解和运用这些样式。 #...

    form表单编辑

    在网页设计和开发中,`form` 表单是一个至关重要的元素,用于收集用户输入的信息。`form` 表单编辑则涉及到如何创建、布局、验证以及处理用户数据的复杂过程。本文将深入探讨 `form` 表单的编辑技术,以期帮助开发者...

Global site tag (gtag.js) - Google Analytics