列表:
列表号是图片时:list-style-image:url(路径)
设置列表号的放置位置:list-style-position:outside/inside
去列表号:list-style:none
背景图片:
background-color 背景颜色;
background-image 背景图;
background-repeat 背景是否平铺 :
repeat 重复(默认) no-repeat 不重复 repeat-x 重复x轴 repeat-y 重复y轴;
background-position 背景图定位;
第一个值—x—left center right,x轴方法向右为正,向左为负
第二个值—y—top center bottom, y轴方向向下为正,向上为负
【两个center值可省略只写一个】给背景图调整位置只能用background-position!!
background-attachment 背景图是否固定 fixed固定;
背景图与插入图片的区别:
- 插入图片无法放文字 表单 表格,背景图可以;
- 绝大部分背景图与插入图片是通用的;
溢出文本:
overflow:hidden 溢出隐藏;
overflow:auto 内容超出容器大小时会自动出现滚动条,不超出则没有;
overflow:scroll 不管内容是否超出容器大小都会出现滚动条;
white-space:bowrap 强制文字在一行,但遇到<br />会换行;
溢出出现省略号:(4个条件写在同一个标签上,一般情况是针对单行)
- overflow:hidden; 溢出隐藏
- white-space:nowrap; 强制文字在一行
- width: ;
- text-overflow:ellipsis;溢出出现省略号