我添加了背景图片,但在页面中看不到。
这是我试过的:
的CSS:
return self.data['education'].value_counts(normalize=True).round(3)
答案 0 :(得分:4)
这是因为div没有固定或定义的测量宽度和高度。
background: url(http://patentimages.storage.googleapis.com/CN103289961A/CN103289961AD00172.png) no-repeat center center fixed;
-webkit-background-size: contain;
-moz-background-size: contain;
-o-background-size: contain;
background-size: contain;
vertical-align: middle;
background-position: center;
width: 500px;
height: 500px;
}
工作link