[WSG] top: 0px; Not Working

2006-03-29 Thread Webmaster
Hello, In IE I can not get the top: 0px; to work. Here's a link to the page: http://www.gypsydev.us/css/ All I'm trying to do is get the image to be exactly along the top. The image has 0 border around it in photoshop. This works in all other browsers. For some reason, IE puts a margin at

Re: [WSG] top: 0px; Not Working

2006-03-29 Thread Chris Littell
Use margin-top: 0px; Should do the trick. ** The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list & getting help *

Re: [WSG] top: 0px; Not Working

2006-03-29 Thread Tyler Keen
try: body{ margin:0px; padding:0px; } On 3/29/06, Webmaster <[EMAIL PROTECTED]> wrote: > Hello, > > In IE I can not get the top: 0px; to work. > > Here's a link to the page: > http://www.gypsydev.us/css/ > > All I'm trying to do is get the image to be exactly along the top. The > image has 0 bor

Re: [WSG] top: 0px; Not Working

2006-03-29 Thread Webmaster
Chris Littell wrote: Use margin-top: 0px; Should do the trick. Hello, Sorry, that did not solve the issue (for me, on my machine). http://www.gypsydev.us/css/ This is really bugging me. I have other CSS pages that don't have this issue. Thanks, Roger

Re: [WSG] top: 0px; Not Working

2006-03-29 Thread Webmaster
Tyler Keen wrote: try: body{ margin:0px; padding:0px; } Hello, Thanks for the information. That did not work either. http://www.gypsydev.us/css/index3.html ** The discussion list for http://webstandardsgroup.org/ See http://webstandards

Re: [WSG] top: 0px; Not Working

2006-03-29 Thread Brian Cummiskey
Well, there's one more: html, body, img { padding: 0; margin: 0; } ** The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list & getting help ***

Re: [WSG] top: 0px; Not Working

2006-03-29 Thread Kenny Graham
It's rendering in quirks mode, that might be causing it. ** The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list & getting help ***

Re: [WSG] top: 0px; Not Working

2006-03-29 Thread Gunlaug Sørtun
Webmaster wrote: http://www.gypsydev.us/css/ All I'm trying to do is get the image to be exactly along the top. Images defaults to 'display: inline' in IE/win - regardless of mode. Solution... .check img {display: block;} ...should solve all positioning-problems. regards Georg -- h

Re: [WSG] top: 0px; Not Working

2006-03-29 Thread Lachlan Hunt
Webmaster wrote: Here's a link to the page: http://www.gypsydev.us/css/ That DOCTYPE triggers Quirks mode. *Never* use a DOCTYPE that triggers quirks mode (unless you really know what you're doing and have made a concious decision to do so). Also, you should not be using a Transitional D

Re: [WSG] top: 0px; Not Working

2006-03-29 Thread Webmaster
Lachlan Hunt wrote: Webmaster wrote: Here's a link to the page: http://www.gypsydev.us/css/ That DOCTYPE triggers Quirks mode. *Never* use a DOCTYPE that triggers quirks mode (unless you really know what you're doing and have made a concious decision to do so). Also, you should not be

Re: [WSG] top: 0px; Not Working

2006-03-29 Thread Lachlan Hunt
Webmaster wrote: Lachlan Hunt wrote: Webmaster wrote: Here's a link to the page: http://www.gypsydev.us/css/ That DOCTYPE triggers Quirks mode. *Never* use a DOCTYPE that triggers quirks mode ... use Strict: http://www.w3.org/TR/html4/strict.dtd";> This did not solve the issue. http

Re: [WSG] top: 0px; Not Working

2006-03-29 Thread Shawn J. Cassick
Webmaster wrote: Chris Littell wrote: Use margin-top: 0px; Should do the trick. Hello, Sorry, that did not solve the issue (for me, on my machine). http://www.gypsydev.us/css/ This is really bugging me. I have other CSS pages that don't have this issue. Thanks, Roger **

Re: [WSG] top: 0px; Not Working

2006-03-29 Thread Lachlan Hunt
Shawn J. Cassick wrote: Webmaster wrote: http://www.gypsydev.us/css/ the problem is the gecko engine renders it fine. ie's engine auto matically puts a 10px margin or so on the top, No, Gecko only does that in Quirks mode and it's not margin at all, it's related to the line-height. jus

Re: [WSG] top: 0px; Not Working

2006-03-29 Thread Shawn J. Cassick
Lachlan Hunt wrote: Shawn J. Cassick wrote: Webmaster wrote: http://www.gypsydev.us/css/ the problem is the gecko engine renders it fine. ie's engine auto matically puts a 10px margin or so on the top, No, Gecko only does that in Quirks mode and it's not margin at all, it's related to th

Re: [WSG] top: 0px; Not Working

2006-03-29 Thread Gunlaug Sørtun
Shawn J. Cassick wrote: just use the !important tag in your css to define the 0px for gecko engine and then use a -10px wthout the !important tag for ie That's addressing the perceived symptom, not the cause. You need to understand the problem fully before you can attempt to find a soluti

Re: [WSG] top: 0px; Not Working

2006-03-30 Thread Webmaster
Lachlan Hunt wrote: Webmaster wrote: Lachlan Hunt wrote: Webmaster wrote: Here's a link to the page: http://www.gypsydev.us/css/ That DOCTYPE triggers Quirks mode. *Never* use a DOCTYPE that triggers quirks mode ... use Strict: http://www.w3.org/TR/html4/strict.dtd";> This did

Re: [WSG] top: 0px; Not Working

2006-03-30 Thread Gunlaug Sørtun
Webmaster wrote: I've never heard of this Quirks mode. Do you have any favorite source on the topic that I can read? I am really interested in making my pages/code proper. 'Quirks mode' is what we call the non-standardized ways of rendering - laying out - web pages, from before there were su

Re: [WSG] top: 0px; Not Working

2006-03-30 Thread Nick Gleitzman
Webmaster wrote: I've never heard of this Quirks mode. Do you have any favorite source on the topic that I can read? I am really interested in making my pages/code proper. N ___ Omnivision. Websight. http://www.omnivis

Re: [WSG] top: 0px; Not Working SOLVED!

2006-03-29 Thread Webmaster
Gunlaug Sørtun wrote: Webmaster wrote: http://www.gypsydev.us/css/ All I'm trying to do is get the image to be exactly along the top. Images defaults to 'display: inline' in IE/win - regardless of mode. Solution... .check img {display: block;} ...should solve all positioning-problems.

Re: [WSG] top: 0px; Not Working SOLVED!

2006-03-30 Thread Webmaster
Gunlaug Sørtun wrote: 'Quirks mode' is what we call the non-standardized ways of rendering - laying out - web pages, from before there were such a thing as widely accepted web standards. The two main 'quirks modes': - Netscape. - Microsoft. Older versions of any browser have nothing but 'quirk