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
Tim Jones 71Tim Jones 71 

How to properly format a property in component with consistent spacing

So I am attempting to use Lightning Card or Tile to display a small bit of data returned from a record via an Apex wire.
This is just read only with a link to click to the full record.
How do I display the data with a lable in a well spaced way.
Right now it bunches it all together on the left side of the component.
<p>Status: {status}</p>
<p>Start Date: <lightning-formatted-date-time value={start}></lightning-formatted-date-time></p>
 <p>End Date: <lightning-formatted-date-time value= {end}></lightning-formatted-date-time></p>     
 <p>All Registrations: {all}</p>
 <p>Eligable: {eligable}</p>
 <p>Redeemed: {redeemed}</p>
 <p>FY Registrations: {fy}</p>

User-added image