演示地址

html:

<form >
    <div class="drag-wrapper">
        请将图片拖到此处
    </div>
</form>

css:

<style>
     .drag-wrapper{
         width:100%;
         height: 300px;
         border: 4px dashed lightblue;
         text-align: center;
         line-height: 300px;
         color: lightgrey;
     }
        .drag-wrapper img{
            max-width: 80px;
        }
    </style>
View Code

相关文章:

  • 2021-11-29
  • 2022-12-23
  • 2022-02-09
  • 2021-08-27
  • 2021-05-27
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-13
  • 2022-01-28
  • 2021-06-08
  • 2021-04-02
相关资源
相似解决方案