C语言 c++ php mysql nginx linux lnmp lamp lanmp memcache redis 面试 笔记 ppt 设计模式 问题 远程连接

input居中,以及input中元素居中

input中的文字居中:

<input type="" style="height:100px; line-height:100px; text-align:center;" />

 

input标签在其他标签内的居中:、

<!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=utf-8" />
<title>无标题文档</title>
<style type="text/css"></style>
</head>

<body>
<div style="border:1px solid red; padding:20px;">
  <input type="text" style="height:40px; vertical-align:middle;" />
  我和input 元素居中了
  <input type="checkbox" />
  单选 </div>
</div>
</body>
</html>

 

posted on 2013-06-15 17:49  思齐_  阅读(14939)  评论(0编辑  收藏  举报