Is it possible to calculate the width in pixel of white space given certain font-size and font-family?
For example, if I plan to use negative margin-left to offset the white space between inline-blocks, I need to know the width of white space.
ul > li{
display:inline-block;
margin-left:-???px;/*calculate this one*/
}