背景与列表

Posted 加号与剑豪

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了背景与列表相关的知识,希望对你有一定的参考价值。

15.1css中的背景与列表
属性:
background-attachment scroll 背景图像随视窗滚动
空格 条的移动而移动
fixed 背景图像不会随视窗滚动条

background-color 十六进制 background-color:#ff0000
英文名称 background-color:red
三原色 background-color:rgb(255,0,0)
transparent background-color:transparent;透明

background-image URL background-image:url("bg.jpg")
空格 背景图片
none 不设置基本图片

background-position top left 背景图像在上左方
(2) top center 上方中间
top right 上右方
center left 中间左方
center center IE中间
center right 下左方
bottom 正下方
bottom right 下右方

background(1) repeat 将背景图案填满整个背景
repeat-x 水平填满
-y 垂直填满
no-repeat 背景图案只出现一个
简化方案:
background:颜色 背景图片 repeat attachment position
red url(xx.jpg)(1)(2)

15.2css中 列表的使用
属性:
list-style-type none 无符号
disc 实体的小圆点
cirele 空心的小圆点
square 实心的小方块
decimal 1,2,3...
lower-roman i,ii,iii...
upper-roman I,II,III...
lower-alpha a,b,c...
upper-alpha A,B,C...

list-style-position inside 清单项目往右移
outside 正常显示

list-style-image URL list-style-image:url(xx.gif)
none 不显示任何图像

清单简化设置:
list-style-circle inside url("xx.gif")

 

以上是关于背景与列表的主要内容,如果未能解决你的问题,请参考以下文章

为列表的任何特定元素设置背景

列表元素上的 SwiftUI 清除背景

文本背景列表换图

ListView:如何从列表中访问视图以更改背景颜色?

css基础 背景Text文本格式Font字体链接列表Table表格

设置列表视图项模板的背景颜色和列表背景颜色时,Xamarin Forms Listview 选定项背景颜色丢失