本帖最后由 花简静 于 2024-7-30 15:41 编辑
<style>
#mybox {
position: relative;
left: calc(50% - 200px);
width: 400px;
height: 200px;
background: url('https://pic.imgdb.cn/item/669cf1b0d9c307b7e9b67c5d.gif') no-repeat center/cover; /* 添加了个GIF动画做背景 */
border-color: lightgreen; /* 颜色 */
border-style: ridge; /* 长相 */
border-width: 10px; /* 厚度 */
border-radius: 0 30px 0 30px;/* 右上,左下为圆角 */
}
</style>
<div id="mybox"></div>
|