Zoofu Posted February 19, 2010 Share Posted February 19, 2010 <?php echo "<table id=\"valign\" width=\"60%\" style=\"border:1px solid #EEE;\">"; echo "<tr><td colspan=\"3\" style=\"border:1px solid #CCC;background-color:#DDD;color:#444;\"><center>Heroes of BuzzWorld<center></td></tr>"; echo "<tr><td style=\"border:1px solid #D5D5D5;background-color:#E5E5E5;color:#555;\"><center>Avatar<center></td><td style=\"border:1px solid #D5D5D5;background-color:#E5E5E5;color:#555;\"><center>Username<center></td><td style=\"border:1px solid #D5D5D5;background-color:#E5E5E5;color:#555;\"><center>Lv.<center></td></tr>"; $sqluy = "SELECT * FROM `users` ORDER BY `pet_level` DESC,`kills` DESC LIMIT 0,15"; $resuy = mysql_query($sqluy) or die(mysql_error()); while($luser = mysql_fetch_assoc($resuy)){ echo "<tr><td style=\"border:1px solid #DDD;background-color:#EEE;color:#666;\"><center><img src=\"./avatar.php?id=".$luser['id']."\"></center></td>"; echo "<td vertical-align=\"middle\" valign=\"middle\" style=\"border:1px solid #DDD;background-color:#EEE;color:#666;\"><center><a valign=\"middle\" href=\"./index.php?page=forum&act=profile&id=".$luser['id']."\">"; echo $luser['username']; echo "</a><br>Kills: ".$luser['kills']."</center></td>"; echo "<td width=\"75\" style=\"border:1px solid #DDD;background-color:#EEE;color:#666;\"><center>".$luser['pet_level']."</center></td>"; echo "</tr>"; } echo "</table>"; ?> For some reason, te cell which has $luser['username'] in, is vertically aligning to the TOP, not the MIDDLE, and I don't have a clue why. (It's only in IE, and for some reason.. After I upload the file and view it it's fine, but when I go to view it a few seconds later, it's broken?) link: http:/www.my-buzz.com/index.php?page=rpg -- The only problem is you need to be logged in.. I'm also using <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> Link to comment https://forums.phpfreaks.com/topic/192614-vertical-alligning-not-working-in-1-cell/ Share on other sites More sharing options...
sader Posted February 19, 2010 Share Posted February 19, 2010 remove this vertical-align=\"middle\" Link to comment https://forums.phpfreaks.com/topic/192614-vertical-alligning-not-working-in-1-cell/#findComment-1014783 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.