Span in an ASP TableRow

  • Thread starter Thread starter Coleen
  • Start date Start date
C

Coleen

Hi all :-) I have the following code, and need it to break specifically at a
point in the span, but I am unable to get it to break exactly where I want
it to.

<asp:TableCell CssClass="table" width="170px" wrap="true">
<span style="font-size:9pt">Jet Fuel Tax - County</span> I want it to
break HERE!
<span style="font-size:7pt">(from Worksheet 2)</span>
</asp:TableCell>

It keeps wrapping - even if I take the wrap="true" statement out. Any
suggestions as to how I get it to break exactly on the </span> ?

Thanks

Coleen
 
What do you mean by break exactly?
Can't you use a break tag <br> there?
 
Funny thing that <br> - I tried that last week and got a syntax error. I just tried again, just to make sure I wasn't missing something, yep - I was missing something! Thanks - I must'a had the sytanx wrong last week becasue now it works! Thanks a bunch, sorry to bug any one :-) Coleen
 
Back
Top