<"/>

谷歌浏览的label与input间距问题应该如何解决

  <!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
  <htmlxmlns="http://www.w3.org/1999/xhtml">
 
  <head>
 
  <metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
 
  <title>无标题文档</title>
 
  <style>
 
  div{width:500px;
 
  height
 
  :500px;
 
  margin
 
  :0auto;border:#000solid1px;}
 
  label{
 
  display
 
  :inline-block;width:100px;border:#000solid1px;}
 
  input{border:#000solid1px;}
 
  </style>
 
  </head>
 
  <body>
 
  <div>
 
  <p><label>账号</label><inputtype="text"/></p>
 
  <p><label>密码</label><inputtype="text"/></p>
 
  <p>
 
  <label>
 
  验证码
 
  </label>
 
  <inputtype="text"/><imgsrc=""width="100"height="20"/>
 
  </p>
 
  </div>
 
  </body>
 
  </html>
 
  验证码的label和input之间的间距明显较上面两个大,将验证码代码的换行去掉,并为一行之后,三个input框就对齐了,原因还不晓得。
 
  PS:img和input没有对齐以前的随笔记录过,只需要分别加个vertical-align:middle就行





本文转载自中文网


 

推荐阅读