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
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>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.