Using css to align span elements - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:span

Description

Using css to align span elements

Demo Code

ResultView the demo in separate window

<html lang="en">
 <head> 
  <title>  Ladineko</title> 
 </head> <!-- w w w .j a  v  a 2 s .  c  o m-->
 <body translate="no"> 
  <span style="margin-left:0px;">1234</span> 
  <br> 
  <span style="margin-left:30px;">1234</span> 
  <br> 
  <span style="margin-left:60px;">1234</span>  
 </body>
</html>

Related Tutorials