Properly code UNICODE FONT ICONS so they render on all browsers - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Font

Description

Properly code UNICODE FONT ICONS so they render on all browsers

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
div.image {<!-- ww  w  .  ja v  a2s .  c  o  m-->
   width:15px;
   height:15px;
   background-image:url('https://www.java3s.com/style/demo/Google-Chrome.png');
}
</style> 
 </head> 
 <body> 
  <div class="image"></div>  
 </body>
</html>

Related Tutorials