Skip to content

Instantly share code, notes, and snippets.

@aosipov
aosipov / 2011 Updated Clearfix
Last active October 6, 2016 19:28
CSS Snippets
.clearfix:before, .container:after { content: ""; display: table; }
.clearfix:after { clear: both; }
/* IE 6/7 */
.clearfix { zoom: 1; }
@aosipov
aosipov / Autocompletion with HTML5 datalists
Created October 8, 2013 21:06
Hyper useful, ready to use HTML5 snippets
<input name="frameworks" list="frameworks" />
<datalist id="frameworks">
<option value="MooTools">
<option value="Moobile">
<option value="Dojo Toolkit">
<option value="jQuery">
<option value="YUI">
</datalist>