Skip to content

Instantly share code, notes, and snippets.

@yyq123
Created September 23, 2012 07:27
Show Gist options
  • Save yyq123/3769211 to your computer and use it in GitHub Desktop.
Save yyq123/3769211 to your computer and use it in GitHub Desktop.
Back to Top - CSS
/* Go Top Link */
div.backToTopButton {
font-family: Georgia;
font-size: 12px;
color: #000000;
background-color: #ffffff;
padding: 3px 10px 20px 10px;
width:50px;
text-align: center;
border-width : thin thin thin thin;
border-color : #999 #999 #999 #999;
border-style : solid solid solid solid;
border-collapse : collapse;
-moz-border-radius: 10px;
border-radius: 10px;
position: fixed;
bottom: -20px;
right: 20px;
z-index: 200;
}
div.backToTopButton:hover {
color: #ffffff;
background-color: #999;
/*cursor: pointer;*/
/*cursor: hand;*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment