如何使定义了高度和宽度的< a >里的文字垂直居中【如何实现代码】

中午,深秋的天空飘着吉祥的白云;子夜,似水的月光谱照着宁静的大地。

如何使定义了高度和宽度的< a >里的文字垂直居中【实现代码】

XML/HTML Code复制内容到剪贴板
  1. <!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <htmlxmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <metahttp-equiv="Content-Type"content="text/html;charset=gb2312"/>
  5. <title>垂直居中</title>
  6. <styletype="text/css">
  7. <!--
  8. .txt{
  9. width:150px;
  10. height:60px;
  11. background-color:#FF0000;
  12. display:block;
  13. text-align:center;
  14. vertical-align:middle;
  15. }
  16. -->
  17. </style>
  18. </head>
  19. <body>
  20. <arel="nofollow noopener noreferrer" href="#"class="txt">文字</a>
  21. </body>
  22. </html>

如何使“文字”垂直居中?
解决办法:加一行:line-height:60px;
记住line-height和height一样,就垂直居中了

以上这篇如何使定义了高度和宽度的< a >里的文字垂直居中【实现代码】就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

原文地址:http://blog.csdn.net/niu_hao/article/details/8955695

标签: amp