I am currently working on creating rounded corners for my responsive table using div elements. However, I am encountering an issue where the top part of the div is not being rounded as expected.
Here is a preview of my current progress: https://i.sstatic.net/bpj8D.png
If you want to see the full code, you can check it out here: http://jsfiddle.net/ajt98kqy/
This is the structure of my HTML:
<div class="coltable">
<div class="col">
<h4>Name</h4>
<p>John</p>
</div>
<div class="col">
<h4>Title</h4>
<p>Manager</p>
</div>
My goal is to have rounded corners on all sides (the top border is currently not rounded). How can I go about fixing this issue?