Skip to content

Instantly share code, notes, and snippets.

@jonsuh
jonsuh / flexbox.css
Last active May 2, 2024 19:01
Flexbox utility classes
/* Flexbox
// ================================================== */
.d--f { display: flex; }
.d--if { display: inline-flex; }
/* Flex direction */
.fd--r { flex-direction: row; } /* Default */
.fd--rr { flex-direction: row-reverse; }
.fd--c { flex-direction: column; }
.fd--cr { flex-direction: column-reverse; }
@jakerella
jakerella / jkq.js
Last active July 11, 2025 12:35
An ultra-light, jQuery-like micro-library for selecting DOM elements and manipulating them.
/****************************************************************
ARCHIVED - NOT MAINTAINED
If you want to use this script (or one like it), please use the
maintained version here:
https://github.com/jakerella/jqes6/blob/master/jqes6.js
****************************************************************/
(function() {
'use strict';