Created
June 12, 2014 14:01
-
-
Save foru17/f7a60c56fc785d458e23 to your computer and use it in GitHub Desktop.
给文字创造一个渐隐的图层
This file contains 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
<style> | |
.intro{ | |
display: block; | |
height: 26px; | |
line-height: 26px; | |
width: 300px; | |
overflow: hidden; | |
position: relative; | |
} | |
.intro .mask{ | |
display: block; | |
position: absolute; | |
bottom:0; | |
left: 0; | |
top: 0; | |
width: 100%; | |
text-align: center; | |
background-image: -webkit-linear-gradient(left, transparent, #fff); | |
} | |
</style> | |
<div class="intro"> | |
<p>balalalbalba这里是文字</p> | |
<span class="mask">/span> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment