HTML CSS examples for Bootstrap Glyphicon:glyphicon-text-background
glyphicon-text-background
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> </head><!--from w ww. jav a 2 s.co m--> <body> <div class="container"> <h2>Text-background Glyph</h2> <p>Text-background icon: <span class="glyphicon glyphicon-text-background"></span></p> <p>Text-background icon as a link: <a href="#"> <span class="glyphicon glyphicon-text-background"></span> </a> </p> <p>Text-background icon on a button: <button type="button" class="btn btn-default btn-sm"> <span class="glyphicon glyphicon-text-background"></span> Text-background </button> </p> <p>Text-background icon on a styled link button: <a href="#" class="btn btn-info btn-lg"> <span class="glyphicon glyphicon-text-background"></span> Text-background </a> </p> <p>Unicode: <span class="glyphicon">&#xe243;</span> </p> </div> </body> </html>