Hey there, I am just starting out with c# and bootstrap. I am trying to style my table similar to the image provided using gridview and ensure it is responsive. However, I am a bit lost on how to go about implementing this.
The aspx code I have so far is:
<div class="table-responsive">
<asp:GridView runat="Server" id="data" CssClass="table table-hover table-bordered"/>
</div>
This is the css code I've tried:
.table-responsive{
margin: 20px;
}
Unfortunately, the output of my table doesn't quite match what I am aiming for.