超链接 a xxx 锚点
表格table 里面的子标签 tr td th caption标题 thead tbody tfoot 常用属性: border cellspacing cellpadding rowspan colspan
background-position 设置背景图片的位置
background-color: green;
/* 设置背景图片 */
background-image: url("../imgs/k.jpg");
/* 修改背景图片尺寸 */
background-size: 100px 100px;
/* 禁止重复 */
background-repeat: no-repeat;
/* 修改图片位置
水平方向(left center right)
垂直方向(top center bottom)
可以控制9个位置*/
/* background-position: right bottom; */
/* 通过百分比控制位置
第一个0代表最左边 100%代表最右边
第二个0代表最上面 100%代表最下面 */
background-position: 90% 90%;