简体   繁体   中英

bootstrap twitter glyphicon shadow css

Can anyone help me get some bootstrap glyphicons buttons look right? I am trying to add some shadow to them in CSS but the shadow goes around the button, not the icon itself. Is there a way to make the shadow around the icon (or at least the form of the icon)? Thank you, Alex

Since the icons are rendered using a custom font you have to use text-shadow :

.glyphicon{
    text-shadow: 0 0 5px red;
}

Demo fiddle

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM