Is it possible with CSS to adjust kerning in CSS? I\'d like to be able to kern a block of text such that it will actually look like a block of text (both left and right edge
Some control on kerning can be achieved in CSS using the letter-spacing attribute.
However, if all you need is to get "both left and right edges aligned", you might want to try using text-align: justify.
EDIT: CSS3 defines a font-kerning property that can be used to enable or disable kerning for specific elements.