-
-
Save Teino1978-Corp/1bae41fef0de1f3f8dab to your computer and use it in GitHub Desktop.
Quick Floats
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
<div class="pull-left">...</div> | |
<div class="pull-right">...</div> | |
<!-- Classes --> | |
<style type='text/css'> | |
.pull-left { | |
float: left !important; | |
} | |
.pull-right { | |
float: right !important; | |
} | |
// Usage as mixins | |
.element { | |
.pull-left(); | |
} | |
.another-element { | |
.pull-right(); | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment