Skip to content

Instantly share code, notes, and snippets.

@vnys
Last active December 1, 2015 08:21
Show Gist options
  • Save vnys/dcbcbd167c73b14a1547 to your computer and use it in GitHub Desktop.
Save vnys/dcbcbd167c73b14a1547 to your computer and use it in GitHub Desktop.
css-nesting

###css nesting polyfill

Input

.main {
	@nest & a {
		text-decoration: none;
	}
}

Output

.main {
}

.main a {
    text-decoration: none;
}

Less

Input

.main {	
	a {
		text-decoration: none;
	}
}

Output

.main a {
  text-decoration: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment