Skip to content

Instantly share code, notes, and snippets.

@Tenderfeel
Created August 4, 2014 08:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tenderfeel/2e60c35a1c1680e78988 to your computer and use it in GitHub Desktop.
Save Tenderfeel/2e60c35a1c1680e78988 to your computer and use it in GitHub Desktop.
block centering (stylus)
// Centering
//
// display:blockにした上で左右marginをautoにする。
//
// Markup:
// <img class="center_block" width="80" height="80">
//
// Styleguide 3.2
//
.center_block
display block !important
margin-left auto
margin-right auto
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment