123456789101112131415161718 |
- <template>
- <button class="btn-close" />
- </template>
- <style lang="less" scoped>
- .btn-close{
- position: absolute;
- width: 72px;
- height: 72px;
- top: 40px;
- right: 40px;
- background-image: url(@/assets/images/icon_close.png);
- background-size: cover;
- background-repeat: no-repeat;
- background-position: center center;
- }
- </style>
|