With reference to this post, I tried using font-feature-settings
CSS property for changing the Proxima Nova font styles to support tabular format for numbers. My element will be like
<a class="test">1111</a>
<a class="test">876</a>
and my CSS declaration will be like
.test {
-moz-font-feature-settings:"tnum" 1;
-ms-font-feature-settings:"tnum" 1;
-o-font-feature-settings:"tnum" 1;
-webkit-font-feature-settings:"tnum" 1;
font-feature-settings:"tnum" 1;
}
But still my output doesn't look as expected. It's something looks like the old:
What can be the perfect fix for this?