vue3中【html+css】盒子背景图设置为gif并撑满整个盒子

html代码

<template>
    <div class="gif_container"></div>
<template>

css代码

.gif_container
    width: 45%
    height: 90%
    border-radius: 25px
    background: url('/images/bj.gif')
    background-size: 100% 100%

猜你喜欢

转载自blog.csdn.net/m0_67986791/article/details/129378155