【发布时间】:2018-10-23 03:06:07
【问题描述】:
我想将图像显示到整页。
[index.js]
import React, { Component } from 'react';
import './index.css';
export default class index extends Component {
render() {
return (
<div className="container">
123
</div>
);
}
}
[index.css]
body {
background: url("../../img/image.jpg");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-color: bisque;
}
但它似乎无法正常工作。
当我用 html/css(不反应)做这个时,它工作得很好。
我该如何解决这个问题?
【问题讨论】: