background 是用于在一个声明中设置所有背景属性的一个简写属性。
格式: background: {属性值}
background-color(背景颜色)
background-image(背景图片)
background-repeat(背景拉伸方式)
background-attachment(固定或者随着页面的其余部分滚动)
background-position(背景定位)
新增的值:
background-clip(规定背景的绘制区域)
background-origin(相对于容器中来定位背景图像)
background-size (背景图像的大小)
文本标签:
粗体
斜体
强调文本
粗体
上标文本
下标文本
文本显示方向,属性dix值ltr(左到右)、rtl(右到左)
文本设置中线
闪烁文本,有浏览器兼容问题
链接
属性 href
target:_self 自身窗口打开
_blank 新窗口打开
书签:<a href="#aname"></a> <a name="aname" > <\a>或者<a id="aname" > <\a>
text-decoration
列表
-
无序列表 属性: type 值:disc圆点、square圆圈、circle方块
-
有序列表 ……
属性: start 列表的起始序号
-
自定义列表
- 选项
标题
-
有序列表 ……
表格
table:
<table cellpadding="0" cellspacing="0" width="" > //cellpadding 内容边距,cellspacing 外边距
<caption>表格名称</caption>
<thead>
<tr> <th>1</th> <th>2</th> <th>3</th> </tr>
</thead>
<tfoot>
<tr> <td colspan="4" >1</td> </tr> //colspan合并列 rowspan合并行
</tfoot>
<tbody>
<tr> <td>1</td> <td>2</td> <td>3</td> </tr>
</tbody>
</table>
表单:
属性 action: 值 目标
属性 method: 值 get(默认)、post
属性 enctype: 值 编码规范
标签
属性: type 值: reset(重置)
值: image(图片提交按钮)
值: search(可删除输入内容)
属性: required 不为空
属性: name 必须
属性: value
属性: readonly 不可编辑
属性: disabled 不可编辑灰色
属性: checked
属性: placeholder 占位符,提示
属性: size 值: 5 //长5
属性: maxlength 值: 5 //限制输入最多5个字符
例子:
<input type="number" max="10" min="1" >
标签 //multiple 可选择多个 size同时显示选项个数
广州 //默认提交“广州”,有value提交gz
标签
属性:rows 行数
属性:cols 列数
标签
标签 (网页中包含另一个页面)
css
字体:
引入字体:
引入字体文件:
@font-face{
font-family:“iconfont” ;
src:url();
…
}
.ifs{
font-family:“iconfont” !important;
}
文件后缀:.eot
.ttf
.svg
.woff
.woff2
css
background:url("") no-repeat center right;
transform: rotate(30deg); //旋转角度
opactity //c3 修改标签的透明度 值:0~1
filter:alpha(20); //ie 9以下,0~100
background-color:rgba(0,0,0,0.1)
cursor: //光标pointer