我正在尝试为我的一个网页实现流畅的图像背景。它在 Chrome 中完美运行,但我无法在 Firefox 中运行。我有两个正方形的 png 图像,当浏览器窗口调整大小时,它们会按比例调整大小。
这是html:
<html>
<head>
<link rel="stylesheet" type="text/css" href="index.css">
<title>Test Flex</title>
</head>
<body>
<div id="parent_div">
<div id="bluesquare_div"></div>
<div id="yellowsquare_div"></div>
</div>
</body>
</html>
这是CSS:
body{
background: #444444;
}
#parent_div{
display: flex;
}
#bluesquare_div{
width: 50%;
background: url("bluesquare.png");
height: 0;
background-size: contain;
background-repeat: no-repeat;
padding-top: 50%;
flex-grow: 1;
}
#yellowsquare_div{
width: 50%;
background: url("yellowsquare.png");
height: 0;
background-size: contain;
background-repeat: no-repeat;
padding-top: 50%;
flex-grow: 1;
}
问题是我在 Firefox 中看不到任何输出。如果我不使用display:flex
那么我可以在 Firefox 中看到这两个方块,但是我的网页需要使用 flexbox,所以我不能丢弃它。
任何人都知道为什么它不能在 Firefox 中工作?
这是 Chrome 版本的屏幕截图:55.0.2883.87 m
这是 Firefox 版本的屏幕截图:50.1.0