盒子阴影 | box-shadow (Backgrounds & Borders) - CSS 中文开发手册 - Break易站
2021-01-27 08:14
盒子阴影 | box-shadow (Backgrounds & Borders) - CSS 中文开发手册
box-shadowCSS 属性描述一个或多个阴影效果作为一个逗号分隔的列表。
/* offset-x | offset-y | color */ box-shadow: 60px -16px teal; /* offset-x | offset-y | blur-radius | color */ box-shadow: 10px 5px 5px black; /* offset-x | offset-y | blur-radius | spread-radius | color */ box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2); /* inset | offset-x | offset-y | color */ box-shadow: inset 5em 1em gold; /* Any number of shadows, separated by commas */ box-shadow: 3px 3px red, -1em 0 0.4em olive; /* Global keywords */ box-shadow: inherit; box-shadow: initial; box-shadow: unset;
box-shadow: 60px -16px teal;
box-shadow: 10px 5px 5px black;
box-shadow: 3px 3px red, -1em 0 0.4em olive;
box-shadow: inset 5em 1em gold;
box-shadow: 0 0 1em gold;
box-shadow: inset 0 0 1em gold;
box-shadow: inset 0 0 1em gold, 0 0 1em red;
box-shadow 属性使您能够从几乎任何元素的框架中投射阴影。如果border-radius在具有箱形阴影的元素上指定了box shadow,则box shadow将具有相同的圆角。多个方块阴影的 z排序与多个文本阴影(第一个指定的阴影在最上方)相同。
Box-shadow 生成器是一个交互式工具,允许您生成 box-shadow。
初始值 | none |
---|---|
适用于 | all elements. It also applies to ::first-letter. |
继承 | no |
媒体 | visual |
计算值 | any length made absolute; any specified color computed; otherwise as specified |
动画类型 | a shadow list |
规范的顺序 | the unique non-ambiguous order defined by the formal grammar |
语法
使用以下命令指定一个box-shadow:
Two, three, or four
要指定多个阴影,请提供逗号分隔的阴影列表。
值
inset如果未指定(默认),则阴影被假定为阴影(就像框被提升到内容之上一样)。
inset关键字的存在将阴影更改为帧内的阴影(就像内容在框内被压下一样)。插入阴影绘制在边界内(甚至透明),高于背景,但低于内容。
如果两个值都是0,则阴影放置在元素后面(并且如果
...对于长而直的阴影边缘,这应该创建一个颜色过渡,即与阴影边缘垂直并居中的模糊距离的长度,范围从阴影内半径终点处的完整阴影颜色到完全透明在它外面的端点。
如果未指定,则使用的颜色取决于浏览器 —— 通常是该color属性的值,但请注意,Safari 在此情况下正在绘制透明阴影。
插值
列表中的每个阴影(none视为0长度列表)通过颜色(作为颜色)分量,以及 x,y,模糊和(适当时)散布(作为长度)分量进行插值。对于每个阴影,如果两个输入阴影都是或者不是inset,则内插阴影在这方面必须与输入阴影相匹配。如果任何一对输入阴影有一个inset而另一个不是inset,则整个阴影列表是不可插入的。如果阴影列表具有不同的长度,那么较短的列表在末尾填充阴影,其颜色是transparent,所有长度都是0,并且其inset(或不)与较长列表匹配。
形式语法
none |#where = inset? && {2,4} && ?where = | | | | | | currentcolor | where = rgb( [ [ {3} | {3} ] [ / ]? ] | [ [ #{3} | #{3} ] , ? ] ) = rgba( [ [ {3} | {3} ] [ / ]? ] | [ [ #{3} | #{3} ] , ? ] ) = hsl( [ [ / ]? ] | [ , , , ? ] ) = hsla( [ [ / ]? ] | [ , , , ? ] )where = | = |
现场示例
box-shadow testbox-shadow tutorial and examplesBox Shadow CSS Generator
规范
规范 | 状态 | 解释 |
---|---|---|
CSS Backgrounds and Borders Module Level 3The definition of ‘box-shadow‘ in that specification. | Candidate Recommendation | Initial definition |
浏览器兼容性
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 10.01 1.0-webkit | (Yes) | 4.0 (2.0)3 3.5 (1.9.1)-moz | 9.02 | 10.51 | 5.11 3.0 -webkit |
Multiple shadows | 10.0 1.0-webkit | (Yes) | 4.0 (2.0) 3.5 (1.9.1)-moz | 9.0 | 10.5 | 5.1 3.0 -webkit |
inset keyword | 10.0 4.0-webkit | (Yes) | 4.0 (2.0) 3.5 (1.9.1)-moz | 9.0 | 10.5 | 5.1 5.0 -webkit |
Spread radius | 10.0 4.0-webkit | (Yes) | 4.0 (2.0) 3.5 (1.9.1)-moz | 9.0 | 10.5 | 5.1 5.0 -webkit |
Feature | Edge | Safari Mobile | Opera Mini | Opera Mobile | Android |
---|---|---|---|---|---|
Basic support | (Yes) | 5.01-webkit | ? | (Yes)1 | (Yes)-webkit1 |
Multiple shadows | (Yes) | 5.0 (Yes)-webkit | ? | ? | ? |
inset keyword | (Yes) | 5.0 (Yes)-webkit | ? | ? | ? |
Spread radius | (Yes) | 5.0 (Yes)-webkit | ? | ? | ? |
上一篇:添加符号 | @counter-style.additive-symbols (Counter Styles) - CSS 中文开发手册 - Break易站
下一篇:线性梯度 | linear-gradient (Image Values) - CSS 中文开发手册 - Break易站
文章标题:盒子阴影 | box-shadow (Backgrounds & Borders) - CSS 中文开发手册 - Break易站
文章链接:http://soscw.com/index.php/essay/47669.html