I'm having difficulty setting a PRECISE height on an html table row.
https://i.sstatic.net/5mP39.png
The left column consists of two divs, each with a height of 44px, while the right column contains the table. The height of each row is set to 44px, but when inspected in Google Chrome, the rows are displayed as 44.44px in height.
SASS:
table {
width: 100%;
border: none;
tr {
height: 44px;
cursor: pointer;
td {
padding: 0 16px;
border-bottom: 1px solid $bg-light;
vertical-align: middle;
}
}
}
I am also using Eric Meyers css-reset, but the issue persists regardless.
Any idea where the extra .44px might be coming from?
EDIT
This problem appears to be specific to Google Chrome; Safari displays the correct height.