In the field for table data
, there is a blue square on top and an icon on the bottom.
To view, please check out this JsFiddle link.
The height of the td
field measures at 26px
due to a small vertical space between the elements: the blue_line
div element and the user_icon
image.
Please refer to this image: https://i.sstatic.net/eMRlU.jpg
I aim to eliminate this vertical space and bring down the height to 20px
.
This has been achieved by including position: absolute;
in the code:
See the updated result here https://i.sstatic.net/5YmFQ.jpg
However, using jquery.ui.resizable
in my application results in issues when adding position: absolute;
to the .blue_line
div element.
Any suggestions on alternative methods to remove the vertical space?