Created
May 29, 2013 07:32
-
-
Save dreamsky/5668560 to your computer and use it in GitHub Desktop.
前端试题:CSS3 文字放大效果
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>前端试题:CSS3 文字放大效果</title> | |
</head> | |
<style> | |
a { | |
display: table-cell; | |
width: 220px; | |
height: 100px; | |
background-color: #A0D0E0; | |
font-size: 12px; | |
color: #fff; | |
vertical-align: bottom; | |
padding: 0 0 5px 10px; | |
text-decoration: none; | |
border-bottom: 5px solid red; | |
} | |
a:hover{ | |
color: #666; | |
-webkit-transition: font-size 1s; | |
-moz-transition: font-size 1s; | |
-ms-transition: font-size 1s; | |
-o-transition: font-size 1s; | |
transition: font-size 1s; | |
font-size: 50px; | |
} | |
</style> | |
<body> | |
<a href="#" title="订阅博客">订阅博客</a> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment