文本效果 text-shadow: 字体阴影 .text{ text-shadow:5 px 5px 5px #FF0000} 指定:水平阴影、垂直阴影、模糊的距离,以及阴影的颜色 box-shadow: 背景阴影 text-overflow: 文字溢出 .text{text-overflow:cl ...
分类:
其他好文 时间:
2016-11-22 13:17:17
阅读次数:
459
1. border-width border-width不支持百分比,类似的还有outline,box-shadow,text-shadow等 border-width支持关键字:thin(1px,最常用),medium(3px,默认值),thick(5px)(IE7除外) 2. border-st ...
分类:
Web程序 时间:
2016-11-17 00:46:53
阅读次数:
186
一、无继承性的属性 1、display:规定元素应该生成的框的类型 2、文本属性: vertical-align:垂直文本对齐 text-decoration:规定添加到文本的装饰 text-shadow:文本阴影效果 white-space:空白符的处理 unicode-bidi:设置文本的方向 ...
分类:
Web程序 时间:
2016-11-08 13:34:05
阅读次数:
336
一、text-shadow 语法: 取值: <length>:长度值,可以是负值。用来指定阴影的延伸距离。其中X Offset是水平偏移值,Y Offset是垂直偏移值 <color>:指定阴影颜色,也可以是rgba透明色 <shadow>:阴影的模糊值,不可以是负值,用来指定模糊效果的作用距离。 ...
分类:
Web程序 时间:
2016-11-08 09:46:51
阅读次数:
261
text-shadow是给文本添加阴影效果,box-shadow是给元素块添加周边阴影效果。随着HTML5和CSS3的普及,这一特殊效果使用越来越普遍。 基本语法是{box-shadow:[inset] x-offset y-offset blur-radius spread-radiuscolor ...
分类:
Web程序 时间:
2016-11-04 16:18:05
阅读次数:
316
text-shadow是给文本添加阴影效果,box-shadow是给元素块添加周边阴影效果。随着HTML5和CSS3的普及,这一特殊效果使用越来越普遍。 基本语法是{box-shadow:[inset] x-offset y-offset blur-radius spread-radiuscolor ...
分类:
Web程序 时间:
2016-11-02 14:24:47
阅读次数:
207
1,首先需要下载ie-css3.htc 2,需要引用ie-css3.htc 使用演示: .main{ border: 2px solid #C0C0C0; -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10 ...
分类:
其他好文 时间:
2016-10-15 22:29:36
阅读次数:
217
圆角边框 border-radius 兼容到 IE9. border-radius: 50%, 后面的数字表示那个角的圆的半径, 为 50% 是根据盒子宽高合成的. border-radius: 40px, 也表示4个角都是一个半径为 40px 的圆. border-radius: 40px 50p ...
分类:
Web程序 时间:
2016-10-14 13:59:58
阅读次数:
138
border-radius : none | <length>{1,4} [ / <length>{1,4} ]? 相关属性: border-top-right-radius , border-bottom-right-radius , border-bottom-left-radius , bor ...
分类:
其他好文 时间:
2016-10-10 14:03:22
阅读次数:
160
```cpp/** You can only use the following style. - color, font-family, font-style - text-shadow - background-* Example: font-family: "微软雅黑", "Meiryo UI... ...
分类:
Web程序 时间:
2016-09-28 22:17:25
阅读次数:
226