mamu
mamu

Reputation: 12414

HTML element size issue

<SPAN>Instuction » &nbsp;</SPAN><INPUT id=inst10008 size=38><A jQuery1249838079711="50"><IMG style="FLOAT: right" border=0 alt=select src="../../Content/image/selectbutton.gif"></A>

I have above in div so it is like "TEXT TextBOX Link"

Link is floating right so would be at end

How could it be achieved?

Upvotes: 0

Views: 91

Answers (1)

JamieGaines
JamieGaines

Reputation: 2082

Could you try floating the first two items left instead? Like this...

<div>
  <span style="float:left">text...</span>
  <input type="textbox" style="float:left;width:100%;" />
  <a href="blah">link text </a>
</div>

Upvotes: 1

Related Questions