Created
October 19, 2015 14:36
-
-
Save jhned/7e2dfe1c2dbbe3284d88 to your computer and use it in GitHub Desktop.
This file contains 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
%tcell { | |
display: table-cell; | |
vertical-align: middle; | |
} | |
@mixin pseudo-triangle { | |
content: ''; | |
display: block; | |
width: 0; | |
height: 0; | |
position: absolute; | |
border: solid transparent; | |
} | |
.linkster { | |
@extend %tcell; | |
@include pseudo-triangle; | |
position: static; | |
vertical-align: top; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment