HTML:
`<div class="food-imagesM imagecontainer">
<!--Page info decoration etc.-->
</div>`
CSS:
`.food-imagesM.imagecontainer{
background-image: url("/Images/Caribbean-food-Menu.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
padding: 100px;
margin: 0px;
padding-bottom: absolute;
}`
当我在chrome中打开我的程序时,一切都显示但背景图像没有显示我已正确链接所有内容但有时我的背景图像没有显示...我该如何解决这个问题?我有sevearal图像容器,但它们没有相同的图像。
答案 0 :(得分:2)
你的选择器不对。
只需使用:.imagecontainer
。
.imagecontainer{
background-image: url("/Images/Caribbean-food-Menu.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
padding: 100px;
margin: 0px;
padding-bottom: absolute;
}
答案 1 :(得分:2)
`.food-imagesH.imagecontainer{
background-image: url("/Images/Caribbean-food-Menu.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
padding: 100px;
margin: 0px;
padding-bottom: absolute;
}`
看起来您正在尝试选择两个类来添加CSS。 如果这是正确的,则CSS中的类名称不正确。 将food-imagesM改为food-imagesH
答案 2 :(得分:-1)
改变食物 - 图像M whit food-imagesH 除此之外,您必须为班级添加宽度和高度。 如果不在div中添加宽度和高度或内容,则其大小应为0 * 0.