Home > Net >  Checkbox tick showing as square
Checkbox tick showing as square

Time:09-23

The checkbox tick of webbrowser and the scroll bar button keep showing as square. This does not happen when with other PC.

I tried to load the HTML code in normal browser, all other browsers showed the tick correctly except internet explorer.

I've searched for solutions online I couldn't get one.

checkbox showing square

web browser scroll bar button showing as square

CodePudding user response:

While this is not the correct place for this question, my guess is you have a problem with your fonts since these characters are painted using fonts, Webdings or something like that if my memory serves me connect

CodePudding user response:

IE is very outdated and therefore will have weird styles for lots of html elements, I do not know if this is the problem with this specific element but if it is, you can use -webkit-appearance: none; to stop the default style and then style it the way you want. Make sure to target the tick and not the checkbox by using a pseudo element. Hope that helps.

  • Related