Hey there, I'm currently facing an issue with aligning a div inside another one.
To illustrate the problem, I've set up a small fiddle which you can check out here: https://jsfiddle.net/jpq7xzoz/
The challenge arises when using the jQuery tablesort-Plugin and including some buttons in the header within a separate div. For example, a search icon to toggle the filter visibility.
<th class="header" style="text-align: center">
<div class="header-inner">Patchlevel</div>
<div class="header-inner-filter">
<button class="filterButton"></button>
</div>
</th>
However, if the columns have different sizes and auto-size adjust, the button's div may wrap onto a new line. The desired result is for the button to remain on the same line as the background image and description text.
I've attempted various display styles and white-space properties without any luck in resolving this issue.
Any suggestions on how I could tackle this problem?
Thank you, Felix