vertical align <input> and <iframe> inside <td> - HTML CSS CSS Form

HTML CSS examples for CSS Form:input

Description

vertical align <input> and <iframe> inside <td>

Demo Code

ResultView the demo in separate window

<!--<!--from   ww w  .  j a v a 2s  .co m-->
Created using JS Bin
http://jsbin.com
Released under the MIT license: http://jsbin.mit-license.org
-->
<html>
 <head> 
  <title>Lorem i</title> 
  <meta http-equiv="Content-type" content="text/html; charset=utf-8"> 
  <style>
#inputId, #iframeId {
   float:bottom;
}
</style> 
 </head> 
 <body> 
  <input type="text" id="inputId"> 
  <iframe id="iframeId" scrolling="no" height="21px" frameborder="0" width="62px" marginheight="0" marginwidth="0" src="http://maishudi.com/Server/SecCode.php"> </iframe>  
 </body>
</html>

Related Tutorials