Rotating Glyphicons / Font Awesome in Bootstrap

前端 未结 5 1352
星月不相逢
星月不相逢 2021-02-07 05:19

I\'m trying to get the glyphicons in my bootstrap site to rotate on hover (in addition to changing color).

Here\'s my attempt: http://jsfiddle.net/young_greedo17/88g5P/<

5条回答
  •  感情败类
    2021-02-07 06:12

    you need to override the icon's display setting, since the rotation won't work on inline elements

    .widgetbox [class*="icon-"] {
    
         ...
    
         display:block;
    }
    

提交回复
热议问题