Align right with indentation - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:p

Description

Align right with indentation

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <style type="text/css">
p {<!--  ww  w  .ja v a  2s . c o  m-->
   direction:rtl;
   padding-right:100px;
   text-indent:-100px;
}
</style> 
 </head> 
 <body> 
  <hr> 
  <p> test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test v v test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test <span style="font-size:0px">a</span> </p> 
  <hr> 
  <script>

      </script>  
 </body>
</html>

Related Tutorials