Sha256: 3eaacdf66edb72a5a743e6a8ae3f761a7493e4770f400163c021ed54c3ddb6f4
Contents?: true
Size: 682 Bytes
Versions: 17
Compression:
Stored size: 682 Bytes
Contents
// Background Origin // position the background off the edge of the padding, border or content // - [padding-box | border-box | content-box] // - browser defaults to padding-box, mixin defaults to content-box // override constants to change defaults !default_background_origin ||= "content-box" =background-origin(!origin = !default_background_origin) // webkit and mozilla use the deprecated short [border | padding | content] !deprecated= "padding" @if !origin == "border-box" !deprecated= "border" @if !origin == "content-box" !deprecated= "content" background-origin= !origin -webkit-background-origin= !deprecated -moz-background-origin= !deprecated
Version data entries
17 entries across 16 versions & 3 rubygems