How to create disabled state of the font awesome icons?

后端 未结 5 1788
小鲜肉
小鲜肉 2021-02-18 21:44

I am using font awesome icons and I need to have a disabled state of the icons. is there any way to do this. I am also using bootstrap.

This is how I am using icons.

5条回答
  •  时光说笑
    2021-02-18 22:32

    Write a custom class for disabled

    Something like

    .fa-disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }
    

    Adding cursor type is important for users experience.

提交回复
热议问题