Styling a Google Map

Google offers a very impressive map service.  Between JS and CSS, styling is usually very straightforward with tools like the Styling Wizard from Google: https://mapstyle.withgoogle.com/ However, some things can fall through the cracks.  Point of the matter –...

Bootstrap navbar overflow strategy

Although it can be complicated markup, the Bootstrap navbar does have lots of features.  Unfortunately, the component does not handle menu overflow, as stated within a warning box on the official Bootstrap site. Generally, the content wraps decently except for when...

Escaping LESS parameters

For example purposes, here is a LESS mixin that looks something like this: .make-blue( @selector ) { @(selector) { background: blue; } }   To call it, I originally did something like this: .make-blue( ‘div’ );   That produced output like this:...