css背景-边框-文本
2021-06-10 07:03
标签:bsp sha web through 其他 默认 stroke ios visible 值: content-box:从content(文字)区域开始显示背景图像 值: border-bottom-left-radius 3.盒子阴影 border-colors 5.盒子倒影 direction值:above below left right offset值: 遮罩值 值: break-all:亚洲文本和英文都断行,该行为与亚洲语言的normal相同。也允许非亚洲语言文本行内的任意字内断开。该值适合包含一些非亚洲文本的亚洲文本,比如使连续的英文字母间断开。 该属性决定了制表符(U+0009)的宽度,整数代表空格(U+0020)的倍数 只有当white-space的属性值为:pre|pre-wrap时,该属性的定义才有效 css背景-边框-文本 标签:bsp sha web through 其他 默认 stroke ios visible 原文地址:http://www.cnblogs.com/zgh929/p/7296452.html一、CSS3背景
属性列表
1.CSS3背景原点属性
background-origin
background-position
时的参考原点位置
background-origin:padding-box2.CSS3裁切属性
background-clip
加私有前缀-webkit-
从前景内容的形状(比如文章)作为裁剪区域向外裁剪,如此即可实现使用背景作为填充色之类的遮罩效果(图片显示在文字上
,需要设color:transparent
)3.CSS3背景尺寸属性
background-size
4.CSS3多背景属性
background-image:url("../../dist/images/bg-tl.png"),
url("../../dist/images/bg-tr.png"),
url("../../dist/images/bg-bl.png"),
url("../../dist/images/bg-br.png");
background-repeat:no-repeat;
background-position:0px 0px, 100% 0px, 0px 100%, 100% 100%;
background: url("../../dist/images/bg-tl.png") no-repeat 0px 0px,
url("../../dist/images/bg-tr.png") no-repeat 100% 0px,
url("../../dist/images/bg-bl.png") no-repeat 0px 100%,
url("../../dist/images/bg-br.png") no-repeat 100% 100%;
二、CSS3边框
1.直角边框
border
border-radius
box-shadow
box-shadow:水平 垂直 模糊度(必须写在颜色前面) 阴影外延宽度 颜色 内阴影(inset)默认为外阴影
4.图片边框
border-image
border-image-source
border-image-slice
border-image-width
border-image-outset
border-image-repeat
box-reflect
-webkit-
-webkit-box-reflect:none|direction offset 遮罩
三、CSS3文本
1.CSS3文本阴影属性
text-shadow
逗号
分隔。多组阴影特殊效果,Demo:火焰文字,霓虹文字text-shadow:none|长度1 长度2 长度3 color
不允许负值
2.CSS3溢出文本属性
text-overflow
...
及自定义字符
clip
:默认值,当内联内容溢出块容器时,将溢出部分裁切掉ellipsis
:当内联内容溢出块容器时,将溢出部分替换为...
3.CSS3文本换行
word-wrap
overflow-wrap
word-break
对比:
word-wrap:单词太长会提前换行
word-break:单词太长不会提前换行,而是在超出范围时,把单词截断换行
white-space
空白距离
,当文字碰到边界时发生换行不保留文字间的空白距离
,当文字碰到边界时发生换行4.CSS3文本装饰
text-decoration
text-decoration-line
text-decoration-style
text-decoration-color
text-decoration-skip
text-underline-position
5.CSS3文本描边(仅Webkit)
text-fill-color
text-stroke
text-strokw-width
text-stroke-color
6.其他文本属性
text-transform
tab-size
text-align
text-align-last
text-justify
text-size-adjust
上一篇:php截取中文字符串无乱码的方法