<..._html圆圈内文字">
当前位置:   article > 正文

【html5】纯css实现圆圈中显示居中文字效果_html圆圈内文字

html圆圈内文字

为了实现qq邮箱app的邮件显示效果,就是哪个邮件左边的图案,当没有找到对应logo时,以主题头一个字作为logo

代码如下:

  1. <html>
  2. <head>
  3. <title>圆圈</title>
  4. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  5. <style type="text/css">
  6. .circle {
  7. width: 25px;
  8. height: 25px;
  9. border-style: solid;
  10. border-width: 1px;
  11. border-radius: 50%;
  12. -moz-border-radius: 50%; -webkit-border-radius : 50%;
  13. border-color: #1E90FF;
  14. -webkit-border-radius: 50%;
  15. }
  16. .circle-text {
  17. font-family:"黑体",Helvetica,"Arial","Microsoft YaHei","宋体",sans-serif;;
  18. width: 25px;
  19. height: 25px;
  20. line-height: 25px;
  21. text-align: center;
  22. font-size: 15px;
  23. font-weight:normal;
  24. color: #1E90FF;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div class="circle">
  30. <div class='circle-text'></div>
  31. </div>
  32. <br>
  33. <div class="circle">
  34. <div class='circle-text'>Pa</div>
  35. </div>
  36. </body>
  37. </html>

效果

 

新的效果-改良版

  1. <html>
  2. <head>
  3. <title>圆圈</title>
  4. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  5. <style type="text/css">
  6. .jy-circle{
  7. border: 1.5px solid #1E90FF;
  8. color: #1E90FF;
  9. font-size: 16px;
  10. border-radius: 100%;
  11. position: relative;
  12. z-index: 2;
  13. display: inline-block;
  14. width: 32px;
  15. height: 32px;
  16. line-height: 28px;
  17. background-color: #FFF;
  18. text-align: center;
  19. box-sizing: border-box;
  20. -webkit-box-sizing: border-box;
  21. -moz-box-sizing: border-box;
  22. font-family:font: 12px/1.5 Tahoma,Helvetica,Arial,'宋体',sans-serif;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <span class="jy-circle"></span>
  28. <span class="jy-circle">Pa</span>
  29. </body>
  30. </html>

 

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/96677
推荐阅读
相关标签
  

闽ICP备14008679号