Aquí está mi códigosuperior Alineación vertical en CSS
<div style="margin:0;padding:0;vertical-align:text-top; border:1px solid red;float:right;">
<span>Key:</span>
<asp:TextBox ID="tbKey" MaxLength="16" runat="server" ></asp:TextBox>
<asp:ImageButton ID="btnRefresh" runat="server" imageUrl="_img/btn_submit.gif" Height="22" Width="52" />
</div>
Me gustaría que todos los tres elementos que simplemente alinee en la parte superior. ¿Es esto factible?
Editado: El código fuente (traducido) es
<div style="margin:0;padding:0;vertical-align:text-top; border:1px solid red;float:right;">
<span>Key:</span>
<input name="tbKey" type="text" maxlength="16" id="tbKey" />
<input type="image" name="btnRefresh" id="btnRefresh" src="_img/btn_submit.gif" style="height:22px;width:52px;border-width:0px;border-width:1px;" />
</div>
eso es su código .NET. Muéstranos el HTML/CSS renderizado. –
acaba de editar la cuestión, véase más arriba – sarsnake