INPUT在DIV实现垂直居中一法,兼容所有主流浏览器

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>input在DIV实现垂直居中一法,兼容所有主流浏览器</title>
<style type="text/css">     
body{font-size:12px;}  
.lanrentuku1{
border: 1px solid #CCC;
width:1120px;
height:40px;
margin:auto;
display: table;  
*position: relative;  
overflow: hidden; 
}  
              
.lanrentuku2 {
vertical-align: middle;
display: table-cell;
*position: absolute;
*top: 50%;
}
        
.lanrentuku3 {
*position: relative;
*top: -50%;
float:right;
padding-right:10px;
}  
</style>
</head>

<body><br /><br /><br />
示例如下:
<div class="lanrentuku1"> 
 <div class="lanrentuku2"> 
  <form action="search.php" name="formsearch">
   <div class="lanrentuku3">
   <input name="textfield" type="text" size="30">
   </div>
  </form>
 </div> 
</div> 
</body>
</html>

本博客所有文章如无特别注明均为原创。作者:sysdee复制或转载请以超链接形式注明转自 成功志
原文地址《INPUT在DIV实现垂直居中一法,兼容所有主流浏览器
分享到:更多

相关推荐

发表评论

路人甲 表情
看不清楚?点图切换 Ctrl+Enter快速提交

网友评论(0)