Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

problem using css absolute positioning, works in IE not in FireFox http://www.barryrich.net/timeline/timelinemap.htm

  • 4 답장
  • 4 이 문제를 만남
  • 11 보기
  • 최종 답변자: Michael Verdi

more options

in my html code I use css for absolute positing of a sit map. One of my boytom styles #1935 works fine in IE but in Firefox it displays at the top left of the screen.

The address of the page is: http://www.barryrich.net/timeline/timelinemap.htm

It's a yellow block with text (1935)

Thanks for any advice on this.

in my html code I use css for absolute positing of a sit map. One of my boytom styles #1935 works fine in IE but in Firefox it displays at the top left of the screen. The address of the page is: http://www.barryrich.net/timeline/timelinemap.htm It's a yellow block with text (1935) Thanks for any advice on this.

선택된 해결법

Without a doctype declared, I believe Firefox parses this as HTML 4.01. In that case you can't start the name of a div with a number. I suggest changing the name of the div to start with a letter.

문맥에 따라 이 답변을 읽어주세요 👍 2

모든 댓글 (4)

more options

선택된 해결법

Without a doctype declared, I believe Firefox parses this as HTML 4.01. In that case you can't start the name of a div with a number. I suggest changing the name of the div to start with a letter.

more options

Let me cahnge the code and give it a try, thank you

more options

Changed the code and it is fine, thank you. Can us suggest a doctype to use for that code?

more options

Probably no reason why you can't just use HTML5. The doctype is:

That should be the very first line of the document. Check out our developer docs on HTLM5 - https://developer.mozilla.org/en/HTML/HTML5