CSS属性含义。网页设计问题
发布网友
发布时间:2022-04-22 03:49
我来回答
共3个回答
热心网友
时间:2022-04-06 13:29
word-spacing 单词或汉字间的间隔距离
letter-spacing 字母间的间隔距离
background-repeat 背景图是否重复显示,即是否填满整个空白区域。
backround-attachment 背景图像是随对象内容滚动还是固定的 值一般是fixed,
margin-top 所属控件与外部控件的上边距是多少
boder-right-style 右边框的样式,是点画线呢还是实现呢,还是双线条呢。等等。
table{margin:20px 10 px} 让页面的所有table 上边距是20px,右边距是10px。
text-indent 针对文字的段落开头的缩进。即是否留出空白。
font-variant 设置文本中的字母,normal 为正常值显示。 small-caps显示为小点的大写字母
background-repeat 上边以提到。
border-bottom-width 底部边框的宽度。
visibility 是否可见。
padding-left 元素与所述控件的左空白。
list-style 设置列表项目相关内容。比如可取值有 list-style-type : disc | circle | square
list-style-image 这个其实与background-image差不多。这里只是图片引用到list样式上来。
热心网友
时间:2022-04-06 14:47
word-spacing和letter-spacing基本一致:定义字符之间的距离;
background-repeat:背景的平铺方式,包括1、repeat-x:沿x轴平铺;2、repeat-y:沿y轴平铺
3、repeat:沿x和y轴平铺
margin-top:距离上一元素的上边距
border-right-style:设置元素右边框的样式
table{margin:20px 10 px}:意思是table元素的上下外边距是20px 左右外边距是10px
text-indent:文本缩进
font-variant:定义小型的大写字母字体,对中文没什么意义
border-bottom-width:下边框宽度
visibility:是否可见 (visible,hidden等)
padding-left;左边留白
list-style和list-style-image:都是定义ul中的li的样式 只不过第二种是自定义图片的
热心网友
时间:2022-04-06 16:21
word-spacing 单词的间距
letter-spacing 字体间距
backround-attachment 固定背景
margin-top 上外边距
boder-right-style 右边框样式
table{margin:20px 10 px}
text-indent 段落缩进,一般是文章开头的空格
font-variant 字体变量小写变大写
background-repeat 背景重复属性
border-bottom-width 下边框的宽度
visibility 设置是否可见
padding-left 左内边距
list-style 小点的样式,比如li前面的那个点,使用list-style:none,就取消那个点了
list-style-image 说白了就是上面那个类似,只是那个点这里可以用图片代替