根据您的描述,您可能想要一个卡通图案的纸巾盒来放在卫生间里。下面是一个简单的HTML代码示例,可以制作这样一个纸巾盒:
```html
.tissue-box {
width: 200px;
height: 150px;
background-color: #f1f1f1;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
}
.tissue-box:before {
content: "";
position: absolute;
top: -20px;
left: 50%;
transform: translateX(-50%);
width: 40px;
height: 40px;
background-image: url('https://via.placeholder.com/40x40?text=
查看详情
查看详情