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
The new LearnerThe new Learner 

how to give white space after every single record in repeat tag

Hi Experts,

I am rendering a pdf and populating data for every single record i want to break and again i need to show in seprate table next record. can anyone let me know please how to do that.
Best Answer chosen by The new Learner
The new LearnerThe new Learner
hi anudeep,

No it wont work, it will break the loop here is the soluation for this 

tr.noBorder td 
            {
            border: 0;
            }

<tr class="noBorder"> <td>A2</td> <td>B2</td> <td>C2</td> </tr>

All Answers

AnudeepAnudeep (Salesforce Developers) 
Can you try <br/> or &nbsp tags?
The new LearnerThe new Learner
hi anudeep,

No it wont work, it will break the loop here is the soluation for this 

tr.noBorder td 
            {
            border: 0;
            }

<tr class="noBorder"> <td>A2</td> <td>B2</td> <td>C2</td> </tr>
This was selected as the best answer