我正在尝试使用 div 的反应在中心创建一个框。边界半径正在工作,但角落的颜色与背景不同。我试过使用溢出:隐藏但它没有做任何事情。
代码:
import React from 'react';
import { Paper, Box } from "@mui/material"
import '../styling/Results.css';
function Results() {
return (
<div className="container">
<div className='wrapper'>
<Paper elevation={10}>
<div className="Box">
<div className="Items">
<h1> Results </h1>
</div>
</div>
</Paper>
</div>
</div>
);
}
export default Results;
CSS:
.wrapper{
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: beige;
}
.Box {
height: 400px;
width: 500px;
background: black;
color: white;
display: flex;
border-radius: 30px;
overflow: hidden;
}
这是它的样子: 截图