中午,深秋的天空飘着吉祥的白云;子夜,似水的月光谱照着宁静的大地。
如何使定义了高度和宽度的< a >里的文字垂直居中【实现代码】
XML/HTML Code复制内容到剪贴板
- <!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=gb2312"/>
- <title>垂直居中</title>
- <styletype="text/css">
- <!--
- .txt{
- width:150px;
- height:60px;
- background-color:#FF0000;
- display:block;
- text-align:center;
- vertical-align:middle;
- }
- -->
- </style>
- </head>
- <body>
- <arel="nofollow noopener noreferrer" href="#"class="txt">文字</a>
- </body>
- </html>
如何使“文字”垂直居中?
解决办法:加一行:line-height:60px;
记住line-height和height一样,就垂直居中了
以上这篇如何使定义了高度和宽度的< a >里的文字垂直居中【实现代码】就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
原文地址:http://blog.csdn.net/niu_hao/article/details/8955695