> I have a box element that uses overflow: hidden and I want a link which
> at the bottom of the element to be visible. I can't make the link visible.
>
> Obviously I'm having problems so I was wondering if there's anything
> other than overflow : hidden that will give me an absolute 'height' and
> make the link visible.
Why is the link invisible-- is it overflowing?
You can add <div style="clear: both"></div> at the end of the element
and use overflow: visible. That will usually work about the same
(although it might clear some other floats you didn't want it to)
zzpat - 25 Nov 2007 18:06 GMT
>> I have a box element that uses overflow: hidden and I want a link which
>> at the bottom of the element to be visible. I can't make the link visible.
[quoted text clipped - 8 lines]
> and use overflow: visible. That will usually work about the same
> (although it might clear some other floats you didn't want it to)
"Clear: both" clears other floats I need. Yes, the link is in the
overflow. Nasty problem.
Ben C - 25 Nov 2007 20:10 GMT
>>> I have a box element that uses overflow: hidden and I want a link which
>>> at the bottom of the element to be visible. I can't make the link visible.
[quoted text clipped - 11 lines]
> "Clear: both" clears other floats I need. Yes, the link is in the
> overflow. Nasty problem.
Post a url, I'm sure we'll think of something.
zzpat - 28 Nov 2007 00:06 GMT
>>>> I have a box element that uses overflow: hidden and I want a link which
>>>> at the bottom of the element to be visible. I can't make the link visible.
[quoted text clipped - 12 lines]
>
> Post a url, I'm sure we'll think of something.
Thanks, I found a solution. I put the text in another div and put the
overflow:hidden in that div. Then I put the link(s) after the overflow.