mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-31 09:05:47 +02:00
document .backface-visibility and update comments and initial value
This commit is contained in:
@@ -251,13 +251,15 @@
|
||||
transform: translate(@x, @y, @z);
|
||||
}
|
||||
|
||||
// Back-face Visibility
|
||||
// This prevents the browser flickering when using to CSS transformations
|
||||
.backface-visibility(@visibility){
|
||||
// Backface visibility
|
||||
// Prevent browsers from flickering when using CSS 3D transforms.
|
||||
// Default value is `visible`, but can be changed to `hidden
|
||||
// See git pull https://github.com/dannykeane/bootstrap.git backface-visibility for examples
|
||||
.backface-visibility(@visibility: visible){
|
||||
-webkit-backface-visibility: @visibility;
|
||||
-moz-backface-visibility: @visibility;
|
||||
-ms-backface-visibility: @visibility;
|
||||
backface-visibility: @visibility;
|
||||
-moz-backface-visibility: @visibility;
|
||||
-ms-backface-visibility: @visibility;
|
||||
backface-visibility: @visibility;
|
||||
}
|
||||
|
||||
// Background clipping
|
||||
|
Reference in New Issue
Block a user