智慧城市代码库
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

index.html 883B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>bim01</title>
  6. <style>
  7. html,
  8. body {
  9. width: 100%;
  10. height: 100%;
  11. /*background-color: #043152;*/
  12. /*background-image: url("static/model/housing/maps/bg.jpg");*/
  13. }
  14. * {
  15. margin: 0;
  16. padding: 0;
  17. }
  18. .container {
  19. width: 100%;
  20. height: 100%;
  21. }
  22. .btns{
  23. width: 100%;
  24. height: 30px;
  25. position: absolute;
  26. left: 0;
  27. bottom: 100px;
  28. text-align: center;
  29. }
  30. .btns >button{
  31. display: inline-block;
  32. }
  33. </style>
  34. </head>
  35. <body>
  36. <div class="container"></div>
  37. <div class="btns">
  38. <button id="upload1">模型上传</button>
  39. </div>
  40. </body>
  41. </html>