My ionic view contains the following:
<div>
<div class="row">
<div class="col col-80" style="background-color: lightgrey;border: 1px solid;border-radius: 15px;">Row 1</div>
<div class="col" style="text-align: center;"><a class="icon ion-edit"></a></div>
</div>
<div class="row">
<div class="col col-80" style="background-color: lightgrey;border: 1px solid;border-radius: 15px;">Row 2</div>
<div class="col" style="text-align: center;"><a class="icon ion-edit"></a></div>
</div>
</div>
I am trying to achieve a design where the first column has a background color, one border around the entire column, and that border with a border-radius. The current code creates individual borders around each row instead of what I need. Is there a way to create a single border for the whole column?