This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// A small and easy experiment by Harry Roberts showing how to achieve equal-width columns in a table with table-layout: fixed;. | |
// DEMO | |
http://jsfiddle.net/csswizardry/zfSt4/ | |
// HTML | |
<ul class="tabs primary-nav"> | |
<li class="tabs__item"> | |
<a href="#" class="tabs__link">Home</a> | |
</li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
module.exports = function(grunt) { | |
// load all grunt tasks | |
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks); | |
grunt.initConfig({ | |
sass: { // Task | |
dist: { // Target | |
options: { // Target options |