html表单样式, table隔行高亮, 长字符串自动换行

简介: 2016年1月14日 11:16:54 星期四 效果图:   html: 1 DOCTYPE html> 2 3 4 5 6 7 8 /*-----*/ 9 10 11 12 13 14 ...

2016年1月14日 11:16:54 星期四

效果图:

 

html:

 1 <!DOCTYPE html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
 6     <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
 7 <style>
 8 /*-----*/
 9 </style>
10 </head>
11 <body>
12 <div class="form">
13     <form action="" method="post">
14         <div class="field">
15             <label>嘿嘿:</label>
16             <input type="text" name="uid" placeholder="嘿嘿">
17         </div>
18         <div class="field">
19             <label>咻咻:</label>
20             <input type="text" name="order_id" placeholder="咻咻">
21         </div>
22         <div class="field">
23             <button type="submit">查询</button>
24         </div>
25     </form>
26 </div>
27 
28 <table class="table">
29     <caption>Log表</caption>
30     <thead>
31     <tr>
32         <th class="large">嘿嘿</th>
33         <th class="medium">咻咻</th>
34         <th class="small">啊啊</th>
35     </tr>
36     </thead>
37     <tbody>
38         <tr>
39             <td>嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿 嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿</td>
40             <td>咻咻咻咻咻咻咻咻咻咻咻咻咻咻 咻咻咻咻咻咻咻咻咻咻咻咻咻咻咻咻</td>
41             <td>啊啊啊啊啊啊啊啊啊啊啊啊啊啊 啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊</td>
42         </tr>
43         <tr>
44             <td>嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿 嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿</td>
45             <td>咻咻咻咻咻咻咻咻咻咻咻咻咻咻 咻咻咻咻咻咻咻咻咻咻咻咻咻咻咻咻</td>
46             <td>啊啊啊啊啊啊啊啊啊啊啊啊啊啊 啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊</td>
47         </tr>
48         <tr>
49             <td>嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿 嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿</td>
50             <td>咻咻咻咻咻咻咻咻咻咻咻咻咻咻 咻咻咻咻咻咻咻咻咻咻咻咻咻咻咻咻</td>
51             <td>啊啊啊啊啊啊啊啊啊啊啊啊啊啊 啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊</td>
52         </tr>
53     </tbody>
54 </table>
55 </body>
56 </html>

css:

 1 /*字体样式, 行内块*/
 2 .form .field {
 3     font-size: 1em;
 4     font-family: "Consolas", "Monaco", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
 5     display: inline-block;
 6 }
 7 
 8 /*input框样式*/
 9 .form .field input[type="text"] {
10     height: 2em;
11     border: 1px solid lightgrey;
12     border-radius: 5px;
13     padding-left: 0.2em;
14 }
15 
16 /*提交按钮*/
17 .form .field button {
18     width: 5em;
19     line-height: 2em;
20     text-align: center;
21     font-weight: bold;
22     border-radius: 5px;
23     overflow: hidden;
24     border-style: none;
25 }
26 
27 /*充满屏幕, 边框样式, 去掉表格空隙*/
28 .table {
29     width: 100%;
30     border: 1px solid lightgrey;
31     border-collapse: collapse;
32 }
33 
34 .table caption {
35     font-weight: bold;
36     margin: 5px;
37 }
38 
39 .table thead {
40     background-color: #F9F9F9;
41 }
42 
43 /*边框样式, 字符截断(配合width使用)*/
44 .table th, .table td {
45     border-right: 1px solid lightgrey;
46     border-bottom: 1px solid lightgrey;
47     word-break: break-all; /*以字母为单位折断*/
48     word-wrap: break-word; /*以单词为单位折断*/
49   white-space: pre-wrap; /*汉字*/
50 }
51 
52 /*偶数行变色*/
53 .table tbody tr:nth-child(even) {
54     background-color: #F9F9F9;
55 }
56 
57 /*用来控制td的宽度*/
58 .table .large {
59     width: 300px;
60 }
61 .table .medium {
62     width: 200px;
63 }
64 
65 .table .small {
66     width: 100px;
67 }

 

目录
相关文章
|
2月前
|
移动开发 HTML5
HTML5 表单属性3
`&lt;input&gt;` 标签的 `formaction`、`formenctype` 和 `formmethod` 属性分别用于指定表单提交的 URL 地址、数据编码类型和提交方法,这些属性可覆盖 `&lt;form&gt;` 标签中的相应属性,并且主要适用于 `type=&quot;submit&quot;` 和 `type=&quot;image&quot;` 的输入类型。
|
1月前
|
移动开发 JavaScript 前端开发
HTML5 表单属性7
`pattern` 属性使用正则表达式验证 `&lt;input&gt;` 元素的值,适用于 `text`, `search`, `url`, `tel`, `email`, 和 `password` 类型。
|
1月前
|
移动开发 UED HTML5
HTML5 表单属性6
`min`、`max` 和 `step` 属性用于限制 `&lt;input&gt;` 标签中的数值或日期范围。例如,可以设置日期选择器的最早和最晚日期,或限制数字输入框的值范围。`multiple` 属性允许在 `&lt;input&gt;` 中选择多个值,适用于邮箱和文件类型。这些属性增强了表单控件的功能性和用户体验。
|
1月前
|
移动开发 HTML5
HTML5 表单属性5
`height` 和 `width` 属性用于 `&lt;input&gt;` 标签中的 `image` 类型,定义图像的高度和宽度。
|
2月前
|
移动开发 HTML5
HTML5 表单属性4
`formnovalidate` 属性是一个布尔属性,用于 `&lt;input&gt;` 元素,指示该输入在表单提交时不需验证,可覆盖 `&lt;form&gt;` 元素的 `novalidate` 属性,常与 `type=&quot;submit&quot;` 一起使用。示例中展示了如何通过两个提交按钮(一个使用验证,另一个不使用)实现不同的表单提交方式。
|
2月前
|
移动开发 JavaScript 前端开发
HTML5 表单属性2
`novalidate` 是 HTML `&lt;form&gt;` 元素的布尔属性,用于禁用浏览器的默认表单验证功能。当此属性存在时,浏览器不会检查表单字段是否符合预设的验证规则,允许开发者通过 JavaScript 等手段自定义验证逻辑。
|
1月前
|
移动开发 数据安全/隐私保护 HTML5
HTML5 表单属性8
`required`属性确保表单提交前输入框不能为空,适用于多种类型的 `&lt;input&gt;` 标签,如文本、邮箱、密码等。`step`属性则用于指定输入域中合法数值的间隔,常与`max`和`min`属性配合使用,适用于数字、日期等类型。例如,设置`&lt;input type=&quot;number&quot; step=&quot;3&quot;&gt;`可使输入值以3为单位递增或递减。
|
2月前
|
移动开发 UED HTML5
HTML5 表单属性1
HTML5为&lt;form&gt;和&lt;input&gt;标签引入了多个新属性,增强了表单的功能性和用户体验。其中,&lt;form&gt;新增了autocomplete和novalidate属性;&lt;input&gt;则增加了如autofocus、formaction、placeholder等13个新属性,支持更精细的表单控制和数据验证。例如,autocomplete属性允许表单或输入字段提供自动完成功能,提高用户填写效率。
|
2月前
|
移动开发 UED HTML5
HTML5 表单元素1
HTML5引入了新的表单元素,如`&lt;datalist&gt;`、`&lt;keygen&gt;`和`&lt;output&gt;`,以增强表单的功能性和用户体验。
|
2月前
|
移动开发 JavaScript 前端开发
html table+css实现可编辑表格的示例代码
html table+css实现可编辑表格的示例代码
81 12