Skip to content

Instantly share code, notes, and snippets.

@sofish
Created December 6, 2012 16:17
Show Gist options
  • Save sofish/4225703 to your computer and use it in GitHub Desktop.
Save sofish/4225703 to your computer and use it in GitHub Desktop.
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>css</title>
<style>
a{display:table-cell;background:green;vertical-align:bottom;padding-left:10px;padding-bottom:5px;height:130px;width:250px;}
a:hover{-moz-transition:all ease-in 1s;-webkit-transition:all ease-in 1s;transition:all ease-in 1s;background:#8fc;font-size:40px;}
</style>
</head>
<body>
<a href="#">hello world</a>
</body>
</html>
@Glowin
Copy link

Glowin commented Dec 7, 2012

文件格式应该是HTML而不是CSS吧

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment