How can I bump down an inline image by 1px but not the rest of the line?

css, html

Solution

A relative position should do the trick:

img.icon {
    position: relative;
    top: 1px;
}

Problem

I am needing an inline image to position 1px below baseline. How can it be done? Thanks Mike

Original source