Thread: Html/css error!
View Single Post
11-23-2006, 10:08 AM
#2
jdudek is offline jdudek
Status: I'm new around here
Join date: Nov 2006
Location:
Expertise:
Software:
 
Posts: 2
iTrader: 0 / 0%
 

jdudek is on a distinguished road

  Old

I guess your problem is caused by Gecko's standards mode (Gecko is the rendering engine in Firefox), which renders space near images in a "proper" way, which is different than IE's. However, there is a special mode in Gecko called "almost standards". You can try to add following lines at the beginning of you file- it should enable the "almost standards" mode
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
			"http://www.w3.org/TR/html4/loose.dtd">
Or you may try to put something like this in your stylesheet (CSS):
Code:
img { vertical-align: bottom }