Sponsored Content
Top Forums Web Development Firefox and IE corssbrowser issues Post 302261154 by cbkihong on Sunday 23rd of November 2008 09:45:47 PM
Old 11-23-2008
According to statistics, this is not your first post here. But anyway, welcome.

At the bottom I noticed you have a row with very large "colspan" - 29 in total but I fail to count that many at other rows. Are you sure that is correctly computed? If columns are not counted accurately your table-based layout may mess-up, and that is sort of expected

Oh by the way, you should specify 'px' explicitly in CSS style properties. Otherwise that is incorrect by standard and may be rejected by some browsers as invalid (that may cause the entire style declaration to be skipped if done the strict way).

I recommend you also enclose the attribute values in quotes in HTML. While for plain HTML it is not necessary, you should try to do this to move closer to XHTML, that by XML specification requires all attribute values enclosed.

I'm not on a Windows computer so I cannot confirm what your page looks like on IE. My recommendation is, first fix your HTML and CSS so that they are all valid first, then cater for cross-browser rendering issues. That way it would be easier to fix specific issues. IE in particular does not have great debugging support builtin, so it is particularly difficult to spot coding issues.
 

6 More Discussions You Might Find Interesting

1. News, Links, Events and Announcements

Firefox 1.0 Released

http://www.mozilla.org/products/firefox The first stable release of the next generation browser has been released, with packages for Linux, OS X and Windows. Go grab it! Cheers ZB (1 Reply)
Discussion started by: zazzybob
1 Replies

2. Shell Programming and Scripting

startx and then firefox

I have edited /etc/inittab to auto login as root in level 3 and edited .bash_profile to auto start x window I would like to auto start a firefox browser after go into x window. I tried to add "firefox" in /etc/rc.d/rc.local but no effects. Anyone have suggestion? Thanks in advance. (1 Reply)
Discussion started by: uativan
1 Replies

3. Red Hat

Cannot bring up Firefox

I have installed firefox and it previously worked before I installed the oracle software on my machine. Now when I click on the icon to bring up the browser it fails. I tried to do it from the command line and this is what I get: $ firefox Cannot find mozilla runtime directory. Exiting ... (1 Reply)
Discussion started by: jxh461
1 Replies

4. Shell Programming and Scripting

Help with cron and Firefox

I am trying to "reload" firefox at 5am everyday. was looking at the crontab and the way it works, however i'm not sure how to kill firefox first and then reopen it. Any suggestions? (7 Replies)
Discussion started by: moshe88
7 Replies

5. Ubuntu

How do i update my firefox.

Hi I have installed ubuntu 10.4 using virtual box(a tool similar to vmware). The problem is i m very familiar to firefox's window counterpart as the update is very simple. I have also observed that the preference part of firefox is under edit tab which is not in case of window's (Its under... (6 Replies)
Discussion started by: pinga123
6 Replies

6. UNIX for Dummies Questions & Answers

Firefox version

Hello, I'm trying to find the version of Firefox that is on my server. Normally I do this. > firefox -version Mozilla Firefox 10.0.7 The issue is that this version of Firefox, is Firefox ESR 10.0.7. I need to be able to see, from the command line, the version of Firefox and if it is a ESR... (8 Replies)
Discussion started by: bitlord
8 Replies
Text::WordDiff::HTML(3pm)				User Contributed Perl Documentation				 Text::WordDiff::HTML(3pm)

Name
       Text::WordDiff::HTML - XHTML formatting for Text::WordDiff

Synopsis
	   use Text::WordDiff;

	   my $diff = word_diff 'file1.txt', 'file2.txt'; { STYLE => 'HTML' };
	   my $diff = word_diff $string1,   $string2,    { STYLE => 'HTML' };
	   my $diff = word_diff *FH1,	     *FH2,	   { STYLE => 'HTML' };
	   my $diff = word_diff &reader1,   &reader2,    { STYLE => 'HTML' };
	   my $diff = word_diff @records1,  @records2,   { STYLE => 'HTML' };

	   # May also mix input types:
	   my $diff = word_diff @records1,  'file_B.txt', { STYLE => 'HTML' };

Description
       This class subclasses Text::WordDiff::Base to provide a XHTML formatting for Text::WordDiff. See Term::WordDiff for usage details. This
       class should never be used directly.

       Text::WordDiff::HTML formats word diffs for viewing in a Web browser. The diff content is highlighted as follows:

       o   "<div class="file">"

	   This element contains the entire contents of the diff "file" returned by "word_diff()". All of the following elements are subsumed by
	   this one.

	   o   "<span class="fileheader">"

	       The header section for the files being "diff"ed, usually something like:

		 --- in.txt    Thu Sep	1 12:51:03 2005
		 +++ out.txt   Thu Sep	1 12:52:12 2005

	       This element immediately follows the opening "file" "<div>" element, but will not be present if Text::WordDif cannot deterimine the
	       file names for both files being compared.

	   o   "<span class="hunk">"

	       This element contains a single diff "hunk". Each hunk may contain the following elements:

	       o   "<ins>"

		   Inserted content.

	       o   "<del>"

		   Deleted content.

       You may do whatever you like with these elements and classes; I highly recommend that you style them using CSS. You'll find an example CSS
       file in the eg directory in the Text-WordDiff distribution.

See Also
       Text::WordDiff
       Text::WordDiff::ANSIColor

Support
       This module is stored in an open repository at the following address:

       <https://svn.kineticode.com/Text-WordDiff/trunk/>

       Patches against Text::WordDiff are welcome. Please send bug reports to <bug-text-worddiff@rt.cpan.org>.

Author
       David Wheeler <david@kineticode.com>

Copyright and License
       Copyright (c) 2005-2008 David Wheeler. Some Rights Reserved.

       This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

perl v5.10.0							    2009-09-24						 Text::WordDiff::HTML(3pm)
All times are GMT -4. The time now is 05:49 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy