Skip to content

Instantly share code, notes, and snippets.

@overcome
Created January 25, 2016 07:12
Show Gist options
  • Save overcome/0c273a8557213ba989f6 to your computer and use it in GitHub Desktop.
Save overcome/0c273a8557213ba989f6 to your computer and use it in GitHub Desktop.
CSS - 垂直居中 (SCSS)
.foo {
$width: 500px;
$height: 300px;
width: $width;
height: $height;
position: absolute;
top: 50%;
left: 50%;
margin-left: - $width/2;
margin-top: - $height/2;
background-color: gray;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment