Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #The text-rendering property in CSS allows you to choose quality of text over speed (or vice versa) allowing you to fine tune optimization by suggesting to the browser as to how it should render text on the screen
- p.legibility {
- text-rendering: optimizeLegibility;
- }
- p.speed {
- text-rendering: optimizeSpeed;
- }
- /* Probably not advisable */
- body {
- text-rendering: optimizeLegibility;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement