11 Most Useful jQuery Plugins To Enhance Typography


Brought to us by Studiodass Magazine

Here we are presenting 11 jQuery plugins for you to improve your typography. With jQuery plugins, you can implement superb things on your website quite easily. In this round up, we have put together some jQuery plugins that will allow you a better control on your website for web typography. We all know that typography is an important element in a web design and achieving a high level of typographic style can make your web design look eve more stunning and attention grabbing.

Read more: 11 Most Useful jQuery Plugins To Enhance Typography http://www.dnjg.be/wordpress/2012/08/28/11-most-useful-jquery-plugins-to-enhance-typography/#ixzz2ADkqDyOj

About these ads

Web Typography for the Lonely


Web Typography for the Lonely aims to excite designers about the possibilities of cutting-edge web standards and javascript through beautiful and inspiring typographic explorations. Check out all this beautiful work …

 

The Ultimate Guide to CSS Typography


Typography is often overlooked in today’s design specifically by web developers. It really is a shame because CSS gives us so much control over our type. That being said, we our limited to certain “web safe” typefaces but that shouldn’t decrease our creativity. Take control over your type!

Below are a few CSS tips for typography on the web. Just a really good resource and quick resources. Check out the full article at three{styles}.com

The Font Attribute

CSS provides us with the Font attribute, which is what allows us to tweak the text on our page. This is an overview of the syntax and how to effect text using CSS.

Font-size

Change the size of your font using font-size

1
2
3
font-size: 1.2em;
font-size: 12px;
font-size: 10pt;

Font-weight

This is used to change the weight of your font (i.e bold, bolder)

1
2
3
4
font-weight: normal;
font-weight: bold;
font-weight: bolder;
font-weight: lighter;

Text-transform

The text-transform property allows you to apply uppercase, lowercase, and capitalize effects to your text.

1
2
3
4
text-transform: capitalize;
text-transform: uppercase;
text-transform: lowercase;
text-transform: inherit;

Text-decoration

The text-decoration property allows you to underline, overline and put a line through your text

1
2
3
4
5
text-decoration: normal;
text-decoration: underline;
text-decoration: overline;
text-decoration: line-through;
text-decoration: blink; (DO NOT USE)

Font-Variant

The Font variant property allows you to create the small-caps effect which capitalizes the letters then decreases the font size.

1
2
3
font-variant: normal;
font-variant: small-caps;
font-variant: inherit;

More resources from three{styles}:

  1. Creating Drop Caps

  2. Creating Attractive Paragraphs

  3. Line-height Examples

  4. Emphasize Text

  5. CSS3

Via three{styles}

The Little Known font-size-adjust CSS3 Property


Ever wanted to use fallback fonts on your CSS with different aspect ratios without them looking huge (or tiny)? The sparkling new CSS3 font-size-adjust property could do just that, maybe.

Find out how >>

via Web Designer Notebook