Adds experimental CSS region
As seen in http://css-tricks.com/content-folding/ Only good for use w/ IE and Webkit right now. Too early for official implementation even.
This commit is contained in:
parent
41b84a5ab1
commit
71b1cd9aae
16
frameworks/compass/stylesheets/compass/css3/_regions.scss
Normal file
16
frameworks/compass/stylesheets/compass/css3/_regions.scss
Normal file
@ -0,0 +1,16 @@
|
||||
@import "shared";
|
||||
|
||||
// Add and utilize CSS regions for Webkit + IE. Experimental implementation. Limit to those two vendor prefixes until more stable.
|
||||
// See http://css-tricks.com/content-folding/ and http://dev.w3.org/csswg/css3-regions/ for more info on use
|
||||
|
||||
@mixin flow-into($target) {
|
||||
@include experimental(flow-into, $target,
|
||||
not -moz, -webkit, not -o, -ms, not -khtml, not official
|
||||
);
|
||||
}
|
||||
|
||||
@mixin flow-from($target) {
|
||||
@include experimental(flow-from, $target,
|
||||
not -moz, -webkit, not -o, -ms, not -khtml, not official
|
||||
);
|
||||
}
|
Loading…
Reference in New Issue
Block a user