Create a Completely Empty Span without spaces - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:span

Description

Create a Completely Empty Span without spaces

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!--from   w  w w.j a v a 2 s. c o m-->
 <body> 
  <span>Click Down Here</span> 
  <span contenteditable="true" style="width:120px;height:20px;display:block;"></span>  
 </body>
</html>

Related Tutorials