2024年08月28日 建站教程
方法一:设置失败图片
.error-image {
background-image: url('images/error-image.jpg');
background-size: cover;
width: 240px;
height: 180px;
}
方法二:设置失败文字
.error-text {
position: relative;
width: 240px;
height: 180px;
}
.error-text::before {
content: '图片加载失败';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
本文链接:http://so.lmcjl.com/news/11658/