Computer Repair Forum | Fix Your PC Free With Be Your Own IT

Top1 Top2
 
Reply
  #1 (permalink)  
Old 02-07-2010, 05:36 PM
Major Leaguer
Points: 1,108, Level: 19 Points: 1,108, Level: 19 Points: 1,108, Level: 19
Activity: 72% Activity: 72% Activity: 72%
 
Join Date: Aug 2009
Location: Cyberspace.
Posts: 141
Default HTML help

If I use the code

<center>
<img src="photo A2.jpg" width="550" alt="" border="0" align="">
</center>

My photo does show up on the web page and is Centered.
But if I use the code


<img src="photo A2.jpg" width="550" alt="" border="0" align="">

My photo stills shows up on the web page but goes to the Left side and this is by default I gt this.

But why does this code not work

<RIGHT>
<img src="photo A2.jpg" width="550" alt="" border="0" align="">
</RIGHT>

After all the code

<center>
<img src="photo A2.jpg" width="550" alt="" border="0" align="">
</center> worked to center the photo


Reply With Quote
  #2 (permalink)  
Old 02-07-2010, 06:41 PM
XaZor's Avatar
Moderator
Points: 2,322, Level: 31 Points: 2,322, Level: 31 Points: 2,322, Level: 31
Activity: 99% Activity: 99% Activity: 99%
Space Invaders Champion Snake Champion Chopper Challenge Champion Mini KickUps Champion KickUps Champion Aski Champion Rabbit Hunter Champion Helicopter Champion Snakeman Steve Champion Bounce Back Champion Gyroball Champion
 
Join Date: May 2009
Posts: 613
Send a message via AIM to XaZor Send a message via MSN to XaZor Send a message via Yahoo to XaZor
Default

Think of it this way.

<center> is sort of an universal tag meaning it will center anything in it.
but <RIGHT> doesn't work like that.

Instead of
Quote:
<RIGHT>
<img src="photo A2.jpg" width="550" alt="" border="0" align="">
</RIGHT>
your code should be

<img src="photo A2.jpg" width="550" alt="" border="0" align="RIGHT">

notice the direction goes in the "align" tag within the img code.

I hope that helps.


__________________
Memento Vivire, Memento Mori.

Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Top2