I'm struggling to properly align two elements together.
Below is the HTML code:
<input class='pretty-border' id='shareinput' value='afdsdasfdasfadsff' />
<span>
<object classid="clsid:d27cdb6e-ae6-11cf-96b8-444553540000"
width="14"
height="14"
id="clippy" >
<param name="movie" value="/clippy.swf"/>
<param name="allowScriptAccess" value="always" />
<param name="quality" value="high" />
<param name="scale" value="noscale" />
<param NAME="FlashVars" value="id=clip_text">
<param name="bgcolor" value="#FFFFFF">
<embed src="/clippy.swf"
width="14"
height="14"
name="clippy"
quality="high"
allowScriptAccess="always"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer"
FlashVars="id=clip_text"
bgcolor="#FFFFFF"
/>
</object>
</span>
And here's the CSS code:
input.pretty-border {
float:left;
font-size:1em;
width: 300px;
padding: 5px 10px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 4px solid #c9deff;
}
Unfortunately, there seems to be a line break between the objects, as shown in the attached image. How can I fix this issue?