Skip to content

Instantly share code, notes, and snippets.

@skylying
Last active March 16, 2018 02:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skylying/b64a1b2415b338ad6e4aa557090e2787 to your computer and use it in GitHub Desktop.
Save skylying/b64a1b2415b338ad6e4aa557090e2787 to your computer and use it in GitHub Desktop.
highlight beta button in download page
#android_beta {
position:relative
}
#android_beta:after {
content: 'BETA';
position: absolute;
color: white;
top: -20px;
right: -13px;
border: 1px solid red;
padding: 3px;
border-radius: 5px;
background: red;
font-size: 10px;
}
<a id="android_beta" onclick="iosButton();">
<img src="images/download/android-download.png" alt="">
</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment