tags:

views:

80

answers:

2

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

Thanks Mike

+5  A: 

A relative position should do the trick:

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

You can also fake it by editing your image:

add as many transparent rows above your current image as needed and you're done!

Felipe Alsacreations