It appears you have not yet registered with DEVPPL. To register please click here... (it's fast, easy and free!)

Forum

Log In Sponsors
Partner Sites
Board index Programming CSS Forum

vertical-align:middle works on IE but not Firefox

vertical-align:middle works on IE but not Firefox

Postby ihsin on Sat Jan 19, 2008 9:36 am

Hi there,

I'm trying to display paragraph with a table embedded in there inline. I hope the table can behave like a big letter in the paragraph, with the line aligned in the center of the table. For example, if I want to make "1/2" to a vertical "1 <hr/> 2", I
would put it in a table and change the "display" property as follows:

Code: Select all
<p> This is a long paragraph. This is a long paragraph. This is a long paragraph. This is a long paragraph. This is a long paragraph. This is a long paragraph.

I HAVE <table style="display:inline;vertical-align:middle"> <tr> <td> 1 <hr /> 2 </td> </tr> </table>  PIZZA.

This is a long paragraph. This is a long paragraph. This is a long paragraph. This is a long paragraph.



This works perfectly for me on IE, but on Firefox only the "inline" property works, and the "vertical-align" property doesn't (i.e., the table and the line text are aligned at the bottom still).

Did I do something wrong? Or is this a Firefox bug?

Thanks
ihsin
 
Posts: 6
Joined: Mon Jan 14, 2008 8:38 am

Postby rangana on Wed Feb 27, 2008 6:40 am

Changing your codes to quoted below will work:
Code: Select all
<p> This is a long paragraph. This is a long paragraph. This is a long paragraph. This is a long paragraph. This is a long paragraph. This is a long paragraph.

I HAVE
<table>
<tr>
   <td>1</td>
</tr>
<tr>
      <td><hr/></td>
      <td>PIZZA</td>
</tr>
   <td>2</td>
</tr>
</table>
This is a long paragraph. This is a long paragraph. This is a long paragraph. This is a long paragraph.


Haven't you know that http://www.hotdesign.com/seybold/ designing in table is not a good practice. You should start building your page w/o tables.

See if the code helps :D
~ Get me some work, I do freelancing ~
User avatar
rangana
500+ Club
 
Posts: 929
Joined: Wed Feb 27, 2008 6:14 am
Location: Cebu City Philippines


Return to CSS Forum

Who is online

Users browsing this forum: No registered users and 0 guests