Re: HTML Q: Wrapping a text to the left and below an image

2002-11-29 Thread Shlomi Fish
On Thu, 28 Nov 2002, Ilya Konstantinov wrote:

 Shlomi Fish wrote:

 Hi I have an image and I'd like to wrap some text to the left and below
 it. Like this:
 
 +---+---+
 | |   |
 |TTT| I |
 | |   |
 +---+---+
 | |   |
 |TTT|TTT|
 | |   |
 +---+---+
 
 What I want is that the image would be placed in the cell marked I and
 the text wrap around the cells marked TTT.
 
 
 In HTML 3.2, add ALIGN=LEFT or ALIGN=RIGHT attribute to the IMG tag.
 In HTML 4.0, use CSS property 'float', e.g. STYLE=float:left or
 STYLE=float:right.


Thanks - it worked like a charm. I also added a few padding-left, and
padding-bottom styles.

Regards,

Shlomi Fish

 Also, check out BR tag's CLEAR attribute, which allows you to insert a
 break-to-after-the-floating-image.



 =
 To unsubscribe, send mail to [EMAIL PROTECTED] with
 the word unsubscribe in the message body, e.g., run the command
 echo unsubscribe | mail [EMAIL PROTECTED]




--
Shlomi Fish[EMAIL PROTECTED]
Home Page: http://t2.technion.ac.il/~shlomif/
Home E-mail:   [EMAIL PROTECTED]

Let's suppose you have a table with 2^n cups...
Wait a second - is n a natural number?


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]




Re: HTML Q: Wrapping a text to the left and below an image

2002-11-28 Thread Guy Cohen

That is related to linux-il, how?

OR

You ever heard about google search for kinder-garden HTML tutorial?


On Thu, Nov 28, 2002 at 05:30:12PM +0200, Shlomi Fish wrote:
 
 Hi I have an image and I'd like to wrap some text to the left and below
 it. Like this:
 
 +---+---+
 |   |   |
 |TTT| I |
 |   |   |
 +---+---+
 |   |   |
 |TTT|TTT|
 |   |   |
 +---+---+
 
 What I want is that the image would be placed in the cell marked I and
 the text wrap around the cells marked TTT.
 
 Currently the page is:
 
 http://t2.technion.ac.il/~shlomif/personal.html
 
 Where I placed the entire text to the right of the image (in an HTML
 table) and you can see it leaves much to be desired.
 
 Note that I do not wish to split the text into two portions, and would
 like to treat the three cells as one contigous cell.
 
 I prefer a solution that will not be too dependant on CSS, as its
 implementation in contemporary browsers is not always ideal.
 
 Regards,
 
   Shlomi Fish
 
 
 
 --
 Shlomi Fish[EMAIL PROTECTED]
 Home Page: http://t2.technion.ac.il/~shlomif/
 Home E-mail:   [EMAIL PROTECTED]
 
 Let's suppose you have a table with 2^n cups...
 Wait a second - is n a natural number?
 
 
 =
 To unsubscribe, send mail to [EMAIL PROTECTED] with
 the word unsubscribe in the message body, e.g., run the command
 echo unsubscribe | mail [EMAIL PROTECTED]

-- 
http://www.uadm.com |   Local and Remote Unix/Linux
[EMAIL PROTECTED]   |   Administration. No outsourcing.
Phone: +972 3 6201373   |   Security, Installations, Support
http://www.uadm.com/pgp.key |   Upgrades and Maintenance.

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]




OT [was: Re: HTML Q: Wrapping a text to the left and below an image]

2002-11-28 Thread Henry Ficher
Take a hint from your ASCII art: you need tables.

Guy Cohen wrote:


That is related to linux-il, how?

OR

You ever heard about google search for kinder-garden HTML tutorial?


On Thu, Nov 28, 2002 at 05:30:12PM +0200, Shlomi Fish wrote:
 

Hi I have an image and I'd like to wrap some text to the left and below
it. Like this:

+---+---+
|   |   |
|TTT| I |
|   |   |
+---+---+
|   |   |
|TTT|TTT|
|   |   |
+---+---+
   





=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]




Re: HTML Q: Wrapping a text to the left and below an image

2002-11-28 Thread Ilya Konstantinov
Shlomi Fish wrote:


Hi I have an image and I'd like to wrap some text to the left and below
it. Like this:

+---+---+
|   |   |
|TTT| I |
|   |   |
+---+---+
|   |   |
|TTT|TTT|
|   |   |
+---+---+

What I want is that the image would be placed in the cell marked I and
the text wrap around the cells marked TTT.
 

In HTML 3.2, add ALIGN=LEFT or ALIGN=RIGHT attribute to the IMG tag.
In HTML 4.0, use CSS property 'float', e.g. STYLE=float:left or 
STYLE=float:right.

Also, check out BR tag's CLEAR attribute, which allows you to insert a 
break-to-after-the-floating-image.



=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]