Fixing Firefox Table Alignment Issue

  • Thread starter Thread starter Kein
  • Start date Start date
  • Tags Tags
    Table Web
AI Thread Summary
The discussion revolves around a web design issue where a user is experiencing alignment problems with a table menu on their webpage. The table, consisting of five columns and one row, displays correctly in Internet Explorer and Safari but misaligns in Firefox, causing the last column to drop to a second line. The user seeks assistance in identifying the cause of this issue. A suggestion is made to adjust the table's width by using a style attribute set to 100%, which may resolve the alignment problem. The user acknowledges the advice and plans to test it later.
Kein
Messages
18
Reaction score
0
Hi, everyone, don't be mad about me. I am a tempered man too! I just want to be cool around with some questions. Perhaps I won't ask for something that people want to take away or never want to give. I have not been realising that even when you don't want to, I can not do anything else than just keep silent with my own problems, right ? It's alright for me and here is my question on a webpage I am trying to make.
I put a table of 5 cols and 1 row on top of the page as a menu, I find that table in my page if opened with iexplore and safari looks fine horizontally but with firefox, another line feed is added and the last col is dropped down to the second line, something wrong about the alignment I am yet to find out a cause.

Could someone tell me why ?
 
Technology news on Phys.org
Kein said:
I put a table of 5 cols and 1 row on top of the page as a menu, I find that table in my page if opened with iexplore and safari looks fine horizontally but with firefox, another line feed is added and the last col is dropped down to the second line, something wrong about the alignment I am yet to find out a cause.

Could someone tell me why ?


Can you put the source code here. From what I understand is that 5th column is coming in the second line but you want all 5 columns in one line.

Width is likely the issue here. Just try

<table style="width:100%">

<tr>

<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>

</tr>
</table>
 
Thanks, I will try it later because I am not at home now.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I have a quick questions. I am going through a book on C programming on my own. Afterwards, I plan to go through something call data structures and algorithms on my own also in C. I also need to learn C++, Matlab and for personal interest Haskell. For the two topic of data structures and algorithms, I understand there are standard ones across all programming languages. After learning it through C, what would be the biggest issue when trying to implement the same data...
Back
Top