Advertisement
developer

text-rendering css

Jul 3rd, 2014
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. #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
  2.  
  3. p.legibility {
  4. text-rendering: optimizeLegibility;
  5. }
  6. p.speed {
  7. text-rendering: optimizeSpeed;
  8. }
  9.  
  10. /* Probably not advisable */
  11. body {
  12. text-rendering: optimizeLegibility;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement