Issue
I have the following material Icon code. However, I would like to add the white background to give it more contras. Any ideas how to add the background?
<a id="lnk_quick_print" href="javascript:;" title="Quick Print" onclick="window.print();" class="material-icons icon noQuickPrint" style="font-size:14px;margin-left: 8px;">print</a>
Solution
Just add background-color:white
in the style
<a id="lnk_quick_print" href="javascript:;" title="Quick Print" onclick="window.print();" class="material-icons icon noQuickPrint" style="font-size:14px;background-color:white;margin-left: 8px;">print</a>
Answered By - lakshna S
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.