CSS - -webkit-box-reflect
The -webkit-box-reflect
CSS property lets you reflect the content of an element in one specific direction.
Syntax
CSS
Copy Code
/* Direction values */ -webkit-box-reflect: above; -webkit-box-reflect: below; -webkit-box-reflect: left; -webkit-box-reflect: right; /* Offset value */ -webkit-box-reflect: below 10px; /* Mask value */ -webkit-box-reflect: below 0 linear-gradient(transparent, white); /* Global values */ -webkit-box-reflect: inherit; -webkit-box-reflect: initial; -webkit-box-reflect: unset;
Values
above
,below
,right
,left
- Are keywords indicating in which direction the reflection is to happen.
<length>
- Indicates the size of the reflection.
<image>
- Describes the mask to be applied to the reflection.
Formal syntax
CSS
Copy Code
<a href="css/value_definition_syntax#brackets" title="Brackets">[</a> above <a href="css/value_definition_syntax#single_bar" title="Single bar">|</a> below <a href="css/value_definition_syntax#single_bar" title="Single bar">|</a> right <a href="css/value_definition_syntax#single_bar" title="Single bar">|</a> left <a href="css/value_definition_syntax#brackets" title="Brackets">]</a><a href="css/value_definition_syntax#question_mark_(.3f)" title="Question mark">?</a> <a href="css/length" title="Possible values: a number followed by'em', 'ex', 'ch', 'rem', 'px', 'cm', 'mm', 'in', 'vh', 'vw', 'vmin', 'vmax', 'pt', 'pc' or 'px', like 3px, 1.5cm, -0.5em or 0"><length></a><a href="css/value_definition_syntax#question_mark_(.3f)" title="Question mark">?</a> <a href="css/image" title=""><image></a><a href="css/value_definition_syntax#question_mark_(.3f)" title="Question mark">?</a>
Description
The -webkit-box-reflect
CSS property lets you reflect the content of an element in one specific direction.
Note: This feature is not intended to be used by Web sites. To achieve reflection on the Web, the standard way is to use the CSS
element()
function.Initial value | none |
---|---|
Applies to | all elements |
Inherited | no |
Media | visual |
Computed value | as specified |
Animatable | no |
Canonical order | the unique non-ambiguous order defined by the formal grammar |
Browser Compatibility
Feature | Firefox (Gecko) | Chrome | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | Not supported | 4.0 | Not supported | 15.0 | 4.0 |
Feature | Firefox Mobile (Gecko) | Android | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | Not supported | 2.1 | Not supported | 22.0 (Yes) | 3.2 (Yes) |
See Also
- The Apple documentation.
- The Webkit specification.
- Lea Verou's article on reflection using CSS features on the standard track.
Specifications
This property is not on the standard track and will not be part of CSS. The standard way to do reflection in CSS is to use the CSS element()
function.
License
© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/css/-webkit-box-reflect