Topic: ie isn't playing fair. (Page 1 of 1) |
|
---|---|
Nervous Wreck (II) Inmate From: Philthadelphia |
posted 05-24-2006 15:15
having problems with my css. |
Paranoid (IV) Inmate From: London |
posted 05-24-2006 16:03
IE and Firefox DO use the same measurements for px, a pixel is a pixel afterall, however as you've not declared a DOCTYPE in your HTML IE and Firefox aren't using the same box model (IE uses an incorrect one as stated per the W3C recommendations). code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> At the beginning of every HTML page for your site, make sure it's teh very first line in your HTML. for more information you may find A List Apart's article on choosing the right DOCTYPE handy. |
Nervous Wreck (II) Inmate From: Philthadelphia |
posted 05-24-2006 16:55
I'll try this out... thanks alot. |
Nervous Wreck (II) Inmate From: Philthadelphia |
posted 05-24-2006 17:41
can anyone see if this breaks in firefox? im at work and only have access to ie6.... |
Lunatic (VI) Inmate From: under the bed |
posted 05-24-2006 17:53
It appears to be fine in Firefox. |
Nervous Wreck (II) Inmate From: Philthadelphia |
posted 05-24-2006 17:56
thanks for your wisdom :3 |
Nervous Wreck (II) Inmate From: Philthadelphia |
posted 05-24-2006 21:26
nevermind about the encoding... just added to my .htaccess instead. :3 |
Lunatic (VI) Inmate From: under the bed |
posted 05-24-2006 22:37
quote:
|
Nervous Wreck (II) Inmate From: Philthadelphia |
posted 05-24-2006 22:49
thanks |
Paranoid (IV) Inmate From: London |
posted 05-25-2006 11:18
The reason why your meta tag was causing validation errors was because it wasn't closed correctly according to XHTML specifications. code: <meta http-equiv=Content-Type content="text/html; charset=ISO-8859-1" />
|
Obsessive-Compulsive (I) Inmate From: |
posted 05-25-2006 18:10
First off, IE wasn't meant to use css. quote: . |
Nervous Wreck (II) Inmate From: Philthadelphia |
posted 05-25-2006 19:16
IE is the only browser available to me at work >.> |
Nervous Wreck (II) Inmate From: Philthadelphia |
posted 05-26-2006 15:12
I didnt know it was possible to love and hate css at the same time :-/ |
Lunatic (VI) Inmate From: under the bed |
posted 05-26-2006 16:01 |
Nervous Wreck (II) Inmate From: Philthadelphia |
posted 05-26-2006 17:06
uhm... i decided on another design and was wondering how I could get the border thats suppose to be on the right side... to be on the right side :P. Its currently on the bottom right. I know i could just absolut position it but I was wondering how to do it another way. thanks in advance. |