dom-to-image-more
Version:
Generates an image from a DOM node using HTML5 canvas and SVG
25 lines (20 loc) • 352 B
CSS
div.only-before::before {
content: 'JustBefore';
}
div.only-after::after {
content: 'JustAfter';
}
div.both::before {
content: 'BothBefore';
}
div.both::after {
content: 'BothAfter';
}
#dom-node {
background-color: white;
color: black;
font-family: monospace;
font-size: 20px;
height: 400px;
width: 400px;
}