|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stay one step ahead of the competition. Evaluate and give feedback
on some of the hottest web development tools on the market today.
Make your opinion heard! Click
Here
|
|
#1
|
|||
|
|||
|
Display Format
I like to dispplay: "Welcome to my web page.Click here." at the middle of my home page (align: center) regardless what kind of screen resolution is being used. How to do that?
|
|
#2
|
|||
|
|||
|
RE: Display Format
put it inside a table.
Code:
<table border="0" align="center" width="100%" height="100%" cellpadding="0" cellspacing="0"> <tr><td align="center"> your text here </td></tr> </table> |
|
#3
|
|||
|
|||
|
RE: Display Format
There are several ways to do this. It all depends on the picture that you have on your mind. Above posts are what they had on their mind. And what I have on my mind is simple as this..
Code:
<html> <body> <h1 align="center"> Welcome to my web page.Click here. </h1> </body> </html> |
![]() |
| Viewing: Codewalkers Forums > Other Technologies > Client Side Things > Display Format |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|
|
|