没有回复
涉水轻舟
涉水轻舟 头像
Offline
Joined: 01-20
8 Simple Ways to Improve Typography In Your Designs

Many people, designers included, think that typographyconsists of only selecting a typeface, choosing a font size and whether it should be regular or bold. For most people it ends there. But there
is much more to achieving good typography and it’s in the details that designers often neglect.

These details give the designer total control, allowing them to create beautiful and consistent typography in their designs. While these details can be applied across different types of media, in this articles we’re going to focus on how to apply them to web design using CSS. Here are 8 simple ways you can use CSS to improve your typography and hence the overall usability of your designs.

1. Measure

The measure is the length of a line of type. To a reader’s eye, long
or short lines can be tiring and distracting. A long measure disrupts
the rhythm because the reader has a hard time locating the next line of
type. The only time a narrow measure is acceptable is with a small
amount of text. For optimum readability you want the measure to be
between 40-80 characters, including spaces. For a single-column design 65 characters is considered ideal.

Screenshot

A simple way to calculate the measure is to use Robert Bringhurst’s
method which multiples the type size by 30. So if the type size is
10px, multiplying it by 30 gives you a measure of 300px or around 65
characters per line. The code would look something like this:


  1. p {  
  2.     font-size10px;  
  3.     max-width300px;  
  4. }  

I’m using px because it makes the math easier but this also works with em’s.

2. Leading

Leading is the space between the lines of type in a body of copy
that plays a big role in readability. Correctly spaced lines make it
easier for a reader to follow the type and improves the overall
appearance of the text. Leading also alters typographic color, which is
the density or tone of a composition.

Many factors affect leading: typeface, type size, weight, case,
measure, wordspacing, etc. The longer the measure, the more leading is
needed. Also, the larger the type size, the less leading is required. A
good rule is to set the leading 2-5pt larger than the type size, depending on the typeface. So if you set the type at 12pt, a 15pt or 16pt leading should work well on the web.

Screenshot

This takes some finessing to get the right spacing but here is an example of what the code would look like:


  1. body {  
  2.     font-familyHelveticasans-serif;  
  3.     font-size12px;  
  4.     line-height16px;  
  5. }  

3. Hanging Quotes

Hang quotes in the margin of the body of text. By not doing so a
quotation mark that is flush with the text will interrupt the left
margin and disrupt the rhythm of the reader. Hanging quotes keeps the
left alignment intact and balanced therefore increasing readability.

Screenshot

This is achieved very easily with CSS using the blockquote element:


  1. blockquote {  
  2.     text-indent-0.8em;  
  3.     font-size12px;  
  4. }  

The negative indent will vary depending on the typeface, type size and margins.

4. Vertical Rhythm

A baseline grid is the foundation for consistent typographic rhythm
on a page. It allows the readers to easily following the flow of the
text, which in turn increases readability. A continuous rhythm in the vertical space
keeps all the text on a consistent grid so that proportion and balance
are retained throughout the page, no matter the type size, leading or
measure.

Screenshot

To keep a vertical rhythm in CSS, you want the spacing between elements and the line-spacing (leading) to equal the size of the baseline grid.
For example, lets say you’re using a 15px baseline grid, meaning that
there are 15px between each baseline. The line-spacing would be 15px
and the space between each paragraph would also be 15px. Here is an
example:


  1. body {  
  2.     font-familyHelveticasans-serif;  
  3.     font-size12px;  
  4.     line-height15px;  
  5. }  
  6.   
  7. p {  
  8.     margin-bottom15px;  
  9. }  

This allows each paragraph element to align with the grid, keeping the vertical rhythm of the text.

5. Widows and Orphans

A widow is a short line or single word at the end
of a paragraph. An orphan is a word or short line at the beginning or
end of a column that is separated from the rest of the paragraph.
Widows and Orphans create awkward rags, interrupt the reader’s eye and
affect readability. They can be avoided by adjusting the type size,
leading, measure, wordspacing, letterspacing or by entering manual line
breaks.

Screenshot

Unfortunately, there is no easy way to prevent typographic widows
and orphans with CSS. One way to remove them has been mentioned above,
but there is also a jQuery plug-in called jQWidon’t that places a non-breaking space between the last two words of an element.

6. Emphasis

Giving emphasis to a word without interrupting the reader
is important. Italic is widely considered to be the ideal form of
emphasis. Some other common forms of emphasis are: bold, caps, small
caps, type size, color, underline or a different typeface. No matter
which you choose, try to limit yourself to using only one. Combinations
such as caps-bold-italic are disruptive and look clumsy.

Screenshot

Here are some difference ways of creating emphasis with CSS:


  1. span {  
  2.     font-styleitalic;  
  3. }  
  4.   
  5. h1 {  
  6.     font-weightbold;  
  7. }  
  8.   
  9. h2 {  
  10.     text-transformuppercase;  
  11. }  
  12.   
  13. b {  
  14.     font-variantsmall-caps;  
  15. }  

Keep in mind that the font-variant style only works if the font supports the small-caps variant.

7. Scale

Always compose with a scale, whether it’s the traditional scale
developed in the sixteenth century that we’re all familiar with, or one
you create on your own. A scale is important because it establishes a typographic hierarchy that improves readability and creates harmony and cohesiveness within the text.

Screenshot

An example of a typographic scale defined in CSS:


  1. h1 {  
  2.     font-size48px;  
  3. }  
  4.   
  5. h2 {  
  6.     font-size36px;  
  7. }  
  8.   
  9. h3 {  
  10.     font-size24px;  
  11. }  
  12.   
  13. h4 {  
  14.     font-size21px;  
  15. }  
  16.   
  17. h5 {  
  18.     font-size18px;  
  19. }  
  20.   
  21. h6 {  
  22.     font-size16px;  
  23. }  
  24.   
  25. p {  
  26.     font-size14px;  
  27. }  

8. Clean Rags

When setting a block of text unjustified with a left or right
alignment, be sure to keep the rag (the uneven side) balanced without
any sudden “holes” or awkward shapes. A bad rag can be unsettling to
the eye and distract the reader. A good rag has a “soft” unevenness,
without any lines that are too long or too short. There is no way of
controlling this in CSS, so to achieve a good rag you must make manual
adjustments to the block of text.

Screenshot

Hyphenation can also help with producing clean
rags, but unfortunately CSS can’t handle this at the moment. Maybe in
the near future we’ll see some control in CSS 3. Not all is lost though. There are some server and client side solutions for auto hyphenation like phpHyphenator and Hyphenator as well as online generators.

Screenshot

Hyphenator.js is a Javascript-library that implements an automatic client-side hyphenation of Web-pages.

Further Resources

Here’s a list of related articles and books to further help you with the details.

About the author

Antonio Carusone is a New York based graphic designer and author of AisleOne, a blog focused on graphic design and typography, and The Grid System, an ever-growing resource on grid systems and part of the Thinking for a Living Network.

为了使自己对生活发生兴趣,我一直在努力……