I have this css:
.records-table-row-checkbox {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
I have a problem with top positioning in Edge browser, been trying to solve it for nearly two days. I want to change top:50%; to top:19px; Only for Edge browser. The rest of the browsers should have top:50%;.
I've tried this :
*::-ms-input-placeholder {
top: 19px;
}
But Edge still takes the 50%.