Recently, I incorporated a stylesheet from Google's Material Icons into my web project. However, upon implementing the HTML code provided to display the icon, I encountered an unexpected issue - a dot appeared beside the icon, which I do not want to be displayed.
Below is the reference to the stylesheet:
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"rel="stylesheet">
Shown below is the code including the icon within a list:
<ul style="POSITION: absolute; TOP:7%; LEFT: 90%; Color:Red">
<li>
<!-- Icon's HTML code -->
<i class="material-icons">account_balance</i>
</li>
</ul>
My assumption is that a boolean property like dot:true/false might be the solution to this issue, but I can't seem to locate it. The problem might be related to my absolute positioning, although I am uncertain.
View the unexpected image here.
The dot unexpectedly appears on the left side, visible and uncovered, when my preference is for it to be concealed.