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 Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to insert new line on a TD TITLE? 2

Status
Not open for further replies.

feshangi

MIS
Nov 24, 2004
265
US
For example let say I have this:

Code:
<td title="titleA titleB titleC">

Is it possible to have titleA on a separate line, titleB on a separate line and titleC on a separate line?

Also is it possible to control the title box height and width?

Thanks,

Mike
 
Actually, it is no on both questions. Tooltips (title attributes) are actually OS driven and cannot be changed via html. If you would like to, you would need to make your own, similar to overLib

In IE it might work if you try:
Code:
<td title="titleA 
titleB 
titleC">
 
This garbage works in IE:
Code:
<td title="title1
title2
title3">

Not possible to control the title. You'll have to use custom javascript along with css to show hidden divs, etc.

*cLFlaVA
----------------------------
[tt]tastes great, less filling.[/tt]
 
Sorry, that should read:

not possible to control the title [blue]size[/blue].

*cLFlaVA
----------------------------
[tt]tastes great, less filling.[/tt]
 
wow, sorry Vrag, must have posted right after you.

*cLFlaVA
----------------------------
[tt]tastes great, less filling.[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top