I have a form in my Rails 3 app that uses span as placeholders, positioned inside of input fields within divs. For most form fields, the structure looks like:
<div class="holds">
<span class="holder">Placeholder</span>
<input>Input</input
</div>
However on one field I want the actual input to be wrapped in text so the input field flows like a sort of fill in the blank. So the HTML rendered would look something like this:
<div><span>It is supposed to <input id="foo" placeholder="ex: rain"> today</span></div>
However I'm having trouble styling that particular div so that it is uniform. I would like the div to:
- Have one consistent border around both
spanandinputbut no borders inside of thespanon the left and right of theinput. (See below in my jsFiddle that I clearly don't have that fixed.) - Focus the entire
divwhen theinputis focused. (I attempted this in my jsFiddle below but my beginner status has limited me.) - Ideally, I'd also position the cursor inside of the input if the
spanis clicked. However that's not high priority.
Here is a link to my jsFiddle. Can anyone help me out?