【发布时间】:2020-12-24 04:30:52
【问题描述】:
我必须在每一页显示横幅All items...。我在这里使用了postion=fixed,但横幅是左对齐的,我需要它水平居中。这是我的代码
export const Bar = styled.div`
position: fixed;
bottom: 0px;
z-index: 100;
height: 5rem;
background-color: ${(props) => props.theme.tile.backgroundColor};
display: flex;
justify-content: center;
align-items: center;
padding: 0 2rem;
font-size: ${(props) => props.theme.typography.mediumFontSize};
`;
【问题讨论】:
标签: html css reactjs styled-components