之前使用background-image属性图片显示不出来,一直没找到原因,只能使用<img>,修改index属性来替代
图片不显示的原因:作为背景的图片必须设置宽高。
<body> <div class="backgroundImage"></div> </body>
body{ background: #333; } .backgroundImage{ background-image: url("../src/images/river.jpg"); width: 1228px; height: 690px; margin: 0px auto; }
时间: 2024-10-28 15:23:11