Skip to content

Instantly share code, notes, and snippets.

@ektarathi
ektarathi / dabblet.css
Created February 2, 2018 15:37 — forked from csssecrets/dabblet.css
Flexible background positioning
/**
* Flexible background positioning
* via extended background-position
*/
div {
background: url(http://csssecrets.io/images/code-pirate.svg)
no-repeat bottom right #58a;
background-origin: padding-box;
@ektarathi
ektarathi / dabblet.css
Created February 2, 2018 15:32 — forked from csssecrets/dabblet.css
Flexible background positioning
/**
* Flexible background positioning
* via extended background-position
*/
div {
background: url(http://csssecrets.io/images/code-pirate.svg)
no-repeat #58a;
background-position: right 20px bottom 10px;
@ektarathi
ektarathi / dabblet.css
Last active February 8, 2018 16:01
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
body {
background: url('http://csssecrets.io/images/stone-art.jpg');
min-height: 100%;}
.box {
background: #fff;
border: 10px solid hsla(0, 0%, 100%, .5);