飞道的博客

让一个文字在背景图片水平居中的方法

226人阅读  评论(0)

最近工作中在做那个可视化大屏,图中用到了大量的装饰图片,下面看一下文字怎么在图片中水平居中。 

这个方法比较好用,其他的方法嵌入太多可能不是特别好使,尤其嵌入到多个框架中。

html


  
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>测试文字在图片上展示 </title>
  6. <style type="text/css">
  7. .imgGroup{
  8. width: 500px;
  9. height: 370px;
  10. position: relative;
  11. margin: auto;
  12. /* text-align: center; */
  13. }
  14. .text{
  15. position: absolute;
  16. top: 50%;
  17. left: 50%;
  18. transform: translate(- 50%, - 50%);
  19. color: red;
  20. }
  21. .imgGroup img{
  22. width: 100%;
  23. height: 100%;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div class="imgGroup">
  29. <img src="img/1.png" alt="图片"/>
  30. <div class="text">孙叫兽 </div>
  31. </div>
  32. </body>
  33. </html>

 效果图:

 


转载:https://blog.csdn.net/weixin_41937552/article/details/115647160
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场