Skip to content

Instantly share code, notes, and snippets.

View SupaFuzz's full-sized avatar
🪐
Working from home

Amy Hicox SupaFuzz

🪐
Working from home
View GitHub Profile
@gabrielsr
gabrielsr / label.css
Created August 2, 2015 14:35
Printing Labels with html and css - PIMACO A4355, A4, 27 labels per page
@media print {
/* Your styles here */
}
@page {
size: 210mm 297mm;
outline: 1pt dotted;
margin: 0;
padding-top: 0;
}
@joyrexus
joyrexus / README.md
Last active June 19, 2024 09:35 — forked from liamcurry/gist:2597326
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})