Skip to content

Instantly share code, notes, and snippets.

View willpracht's full-sized avatar
🦖

Will Pracht willpracht

🦖
View GitHub Profile
@willpracht
willpracht / fauxbox.html
Created January 23, 2014 21:31
Fake Flexbox
<section>
<nav></nav>
<article></article>
</section>
<style>
nav{
top: 0;
bottom: 0;
left: 0;
@willpracht
willpracht / navigation-indicators.css
Last active December 20, 2015 17:19
Neat CSS trick to horizontally center navigation indicators on dynamically-sized nav items.
.navbar.home .navbar-nav li{
position: relative;
}
.navbar.home .navbar-nav li.active a:after{
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #bd0304; // Triangle
content: ''; // Empty content
height: 0;