实现文本标题和input文本框垂直居中对齐_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:27:29
Original
2015 people have browsed it

实现文本标题和input文本框垂直居中对齐:
本章节分享一段代码实例,它实现文本标题与input文本框上下垂直居中效果。
需要的朋友可以做一下参考,代码实例如下:

 

<!DOCTYPE html><html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>蚂蚁部落</title> <style type="text/css">#a{  height:30px;  border:1px solid #ccc;}#b{  margin-top:20px;  height:30px;  border:1px solid #ccc;}#a input{  width:200px;  height:30px;  border:1px solid red;}#b input{  width:200px;  height:30px;  border:1px solid red;  vertical-align:middle;}</style></head><body><div id="a"><input />蚂蚁部落一</div><div id="b"><input />蚂蚁部落二</div></body></html>
Copy after login

 

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=18144

更多内容可以参阅:http://www.softwhy.com/divcss/

 

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!