分类

链接

2023 年 2 月
 12345
6789101112
13141516171819
20212223242526
2728  

近期文章

热门标签

新人福利,免费薅羊毛

现在位置:    首页 > 前端 > 正文
共享办公室出租
彻底解决不同分辨率下的绝对定位问题/大小问题
前端 暂无评论 阅读(84)

原理就是 font-szie   +  rem

 

  1. <!doctype html>
  2. <html style="font-size: calc((100vw/375)*10)">
  3. <head>
  4. <meta charset="utf-8"></meta>
  5. <meta content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0;"name="viewport"></meta>
  6. <title>Disney Spring Web!</title>
  7. <style>
  8.         html,body{
  9.             margin:0;
  10.             padding:0;
  11. }
  12. .container {
  13.             max-width:1000px;
  14.             margin:0 auto;
  15.             border-radius:10px;
  16.             display: flex;
  17.             text-align: center;
  18.             flex-direction: column;
  19.             position: relative;
  20. }
  21.         img{
  22.             max-width:100vw;
  23. }
  24. .bg{
  25.             position: absolute;
  26.             left:0;
  27.             top:0;
  28.             width:41rem;
  29. object-fit: fill;
  30. }
  31. .loc_1{
  32.             position: absolute;
  33.             top:2.5rem;
  34.             left:5rem;
  35.             width:4rem;
  36.             height:4rem;
  37. }
  38. </style>
  39. </head>
  40. <body>
  41. <div class="container" id="container">
  42. <img src="1.jpg" class="bg"/>
  43. <img src="location.png" class="loc_1"/>
  44. </div>
  45. </body>
  46. </html>

 

注:

  1. <html style="font-size: calc((100vw / 375)*10)">其中 375是你开发参考的分辨率,比如IPOHE12下,fontsize= 10px; 

============ 欢迎各位老板打赏~ ===========

本文版权归Bruce's Blog所有,转载引用请完整注明以下信息:
本文作者:Bruce
本文地址:彻底解决不同分辨率下的绝对定位问题/大小问题 | Bruce's Blog

发表评论

留言无头像?