Hello, I'm encountering an issue with a table while using bootstrap. The table contains columns, some filled with data and some empty. Each column needs to have a button, even the empty ones. However, I am struggling to get the buttons in the columns to be 100% of the height of the td. One requirement is that each td contains a div, and within that div is the button. The structure looks like this:
<tr>
<td>
<div> //THIS DIV IS IMPORTANT - I am using the react-bootstrap framework and the Button component includes this div inside
My text data, whether empty or not
</div>
</td>
</tr>
I have tried removing paddings, setting the div and buttons to 100% height and width, but the button height still isn't 100%. Can you please help me identify the problem?
You can find the code here on jsfiddle.
I had previously included a broken link, but it should be working now.