Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Allign Left without using <p allign=left> 1

Status
Not open for further replies.

Dummy99

Programmer
Apr 25, 2002
30
0
0
FR
After doing a <center>, how can I start my next line left alligned without using a <p align=left>. I want my next line to start immediately following the <hr> but I don't want a line skip. e.g. of code follows:

<center>
<hr width="80%" size="6" noshade></>

<font color ="Blue" size=2><p align=left>
This is my next line of text to show on the screen.

<p align=left> is no good 'cause it gives me a linefeed which I don't want.

Thanks,
Michael
 
That's a HTML question not a javascript one, but close your center tag....
Code:
<center><hr width="80%" size="6" noshade>[b]</center>[/b]

However you would be much better off ditching the center and font tags altogether and using CSS to control the layout of your code.

[sub]Never be afraid to share your dreams with the world.
There's nothing the world loves more than the taste of really sweet dreams.
[/sub]

Enable Apps
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top