Add space between table and text - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Table Text

Description

Add space between table and text

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">
.border1 {
   border-top:thin solid;
   border-bottom:thin solid;
   border-left:thin solid;
   border-right:thin solid;
   border-color:Chartreuse;
   padding:19px 123px 12px
}
</style> <!--from w ww .ja va2  s. co  m-->
 </head> 
 <body> 
  <table class="formLayout" width="81%" cellspacing="0" cellpadding="0"> 
   <tbody> 
    <tr> 
     <td class="border1"> <b> <font size="3" face="Arial"> <p>Lorem ipsum dolor </p> </font> </b> </td> 
    </tr> 
   </tbody> 
  </table>  
 </body>
</html>

Related Tutorials