function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Salesforce Test 5Salesforce Test 5 

How to Put space between Text in HTML

Hi All

How to put Space between Amount,Day ,Rate and Brokerage in table..


User-added image
 
<tr>
                   <td>
                       <table border="0" cellspacing="0" width="100%">
                            <tr>
                                 <td valign="middle" align="left" width="20%" style="right: 546.117px; top: 434.567px; font-size: 20px; font-family: serif; transform: scaleX(1.00015);" >
                                  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<u> Name of the Lender</u>
                                 </td>
                                 <td valign="left" align="left" width="90%" style="left: 546.117px; top: 434.567px; font-size: 20px; font-family: serif; transform: scaleX(1.00015);">
                                   <u> Amount</u>
                                 </td>
                                
                                 <td  width="80%"  style="left: 546.117px; top: 434.567px; font-size: 20px; font-family: serif; transform: scaleX(1.00015);">
                                    <u>Days</u>
                                    
                                 </td> 
                                 <td valign="left" align="left" width="10%" style="left: 546.117px; top: 434.567px; font-size: 20px; font-family: serif; transform: scaleX(1.00015);">
                                   <u> Rate</u>
                                 </td>
                                 <td valign="right" align="right" width="10%" style="left: 546.117px; top: 434.567px; font-size: 20px; font-family: serif; transform: scaleX(1.00015);">
                                   <u>Brokerage(Rs.)</u>
                                 </td>    
                            </tr>

 
BalkishanBalkishan
You are setting width of each column, don't do this and set text-align center for column. Use <th> to give column heading.