<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material Symbols Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<span >
delete
</span>
Initial phase its showing raw text and then after some time its display the icon, How can we fix this?
CodePudding user response:
You can set display
in the params, which does the same thing as CSS font-display
property does.
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material Symbols Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200&display=block" />
<span >
delete
</span>