View Single Post
Old 01-15-2019, 09:55 PM   #9
Psymon
Chief Bohemian Misfit
Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.
 
Psymon's Avatar
 
Posts: 571
Karma: 462964
Join Date: May 2013
Device: iPad, ADE
I did earlier come up with this potential "noligs" class before, which I thought might work -- and which you'd think should work -- but it doesn't seem to, my ligs still show up anyway (and oh, I see I did use that optimizeSpeed thing in there... to no avail)...

Code:
.noligs {
	-moz-font-feature-settings: "hist=0, liga=0, dlig=0";
	-ms-font-feature-settings: "hist" 0, "liga" 0, "dlig" 0;
	-webkit-font-feature-settings: "hist" 0, "liga" 0, "dlig" 0;
 	-o-font-feature-settings: "hist" 0, "liga" 0, "dlig" 0;
	font-feature-settings: "hist" 0, "liga" 0, "dlig" 0;
	font-feature-settings: "kern" 1, "liga" 0;
	font-kerning: normal;
	text-rendering: optimizeSpeed;
}
Psymon is offline   Reply With Quote