Reputation: 593
I'm having a strange issue at the moment. I have a table with several account listings, all of which have a clickable ID number. I've stretched the link across the entire row using stretched-link
, and it works perfectly in Firefox. However, in a meeting with my team we discovered that the links are very broken in Chrome and Edge. For some reason, the bottom-most stretched-link
is stretched across the entire page, instead of being confined to just the table row.
Here's a JSFiddle showcasing the issue: https://jsfiddle.net/v7ut1jL0/1/
Why is this happening?
Upvotes: 3
Views: 776
Reputation: 13407
I feel not only the last, but all the links are taking full-body space.
It's an open issue in Bootstrap's repository https://github.com/twbs/bootstrap/issues/28608 .
As mentioned in this comment It's probably due to the fact that
"The effect of 'position:relative' on table-row-group, table-header-group, table-footer-group, table-row, table-column-group, table-column, table-cell, and table-caption elements is undefined."
See the documentation reference here
Upvotes: 3