Alert number above letter T with <sup> - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:sup

Description

Alert number above letter T with <sup>

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">
.msg-count {<!-- ww w  .  j ava  2 s.  c o  m-->
   padding:0;
   min-width:11px;
   font-size:11px;
   border:2px solid Chartreuse;
}
</style> 
 </head> 
 <body> 
  <p> T <sup class="msg-count">0</sup> </p>  
 </body>
</html>

Related Tutorials