Home > Web Front-end > HTML Tutorial > 关于padding设置的问题_html/css_WEB-ITnose

关于padding设置的问题_html/css_WEB-ITnose

WBOY
Release: 2016-06-21 08:57:09
Original
1382 people have browsed it

如果我给定了元素框的高度,padding似乎没那么好用了。
比如:





这是文字


如果不加height:50px;这句,文字在红色框里就是居中对齐的,加了这句,文字在框里就偏上。为什么?不是说padding给一个值可以让四边都对称的吗?  如果我一定要设定框高度,那么用什么办法实现文字在空间里居中?


回复讨论(解决方案)

a
{display:block;
 background-color:red;
 width:120px;
 height:50px;
 line-height:50px;
 text-align:center;
 padding:6px;
 text-decoration:none;
}

Related labels:
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