Jump to content

Vertically centering output


sanderphp

Recommended Posts

I'm using a simple script to display a quote on the screen. I added the table line to get the output to appear in the center, but its still at the top of the screen. How do I get it centered in the middle of the page vertically?

 


<TABLE HEIGTH=75% WIDTH=75% BORDER="0"  VALIGN="Middle" ALIGN="center">

<?php

echo '<head>';
    echo ' <link rel="stylesheet" href="styles.css" type="text/css">';
echo '</head>';





require( "config.php" );

$Quote = new CQuote; 

if( $Quote->Get( $strQuote ) == 0 )
echo $strQuote;

?>
</table>

Link to comment
https://forums.phpfreaks.com/topic/145365-vertically-centering-output/
Share on other sites

Even this way, the output is still displayed above the table.

 

<head>
<link rel="stylesheet" href="styles.css" type="text/css">
</head>
<TABLE HEIGHT=75% WIDTH=75% BORDER="2"  VALIGN="Middle" ALIGN="center">

<?php

require( "config.php" );

$Quote = new CQuote; 

if( $Quote->Get( $strQuote ) == 0 )
echo $strQuote;

?>
</table>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.