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
Herish SurendranHerish Surendran 

How to add border-radius property to the following table ?

<table style="tableCss font-family: arial, sans-serif; border-collapse: collapse; width: 100%;">
      <aura:iteration items="{!v.listValue}" var="cus" indexVar="key">
           <tr>
              <td style="border: 1px solid black; text-align: left; padding: 8px;border-color: 
                black;">
                    <input type="radio" id="Phone" name="verificationMethod" value=" 
                       {!cus.value}" checked = "false" onchange="{!c.selectMethod}"/>
                    <label class="slds-text-heading_small">&nbsp;{!cus.key}&nbsp;{!cus.value} 
                    </label>
               </td>
           </tr>
      </aura:iteration>
</table>

 
ANUTEJANUTEJ (Salesforce Developers) 
Hi Herish,

I have tried checking if there are any ways mentioned but unfortunately there are no particular examples mentioned can you try checking if any of the below links would help as they are the only once I could find regarding the border roundedness.

>>https://salesforce.stackexchange.com/questions/196672/border-radius-table-visualforce-page

>> https://gravitypdf.com/documentation/v5/developer-rounded-corners/

I hope this helps, incase if this comes handy can you please choose this as best answer so that it can  be used by others in the future.

Regards,
Anutej