tags:

views:

48

answers:

3

-edit- example: http://jsfiddle.net/AXCap/

i want the three links to be on the same line but the 3rd must be a block to take up remaining space in the li so that it is clickable. I tried a number of things and the example linked above is my closest result. How do i make the 3rd link share the same line and a block so the resut of the line is clickable?

I tried float left and that does not allow the third link to take up remaining space.

A: 

Please post the CSS with the class names associated with the links.

If they are not doing any positioning, then this might work:

<li><nobr><a href=... class="one"><a href=... class="two"><a href=... class="three"></nobr></li>

HTH

Sunny
Interesting tag. I never seen it before. I had no luck with that. (see various links i left in question and comments)
acidzombie24
A: 

Try giving one and two a display: inline and then give 3 a display: block

If that doesn't work, give one and two a float: left and 3 a clear: left

EDIT

Scratch that. I misread your original post.

What about giving all 3 a display: inline?

Levi Hackwith
then it doesnt take the remaining space http://jsfiddle.net/gF3Dw/. Heres the other try http://jsfiddle.net/nyRmH/
acidzombie24
Can you give each one of them a set width? Like give the first 2 a width of 30% and the last one a width of 70%?
Levi Hackwith
+1  A: 

Something like that http://jsfiddle.net/3L7MW/ ?

gregseth
Thank you! (5 more to go..)
acidzombie24