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>