Skip to content

Instantly share code, notes, and snippets.

View markprovan's full-sized avatar

Mark Provan markprovan

View GitHub Profile
@honkskillet
honkskillet / byte-sizetuts.md
Last active July 18, 2024 08:32
A series of golang tutorials with youtube videos.
@Gaya
Gaya / fill-container-floats.css
Last active January 4, 2016 03:09
Fills container height containing floating elements without setting `overflow: hidden`.
.container:after {
content: "";
clear: both;
display: table;
}
//or as a mixin
@mixin clearfix {
&:after {
content: "";