到目前为止,我已经尝试了这个:
import "./styles.css";
import { Box, Typography } from "@mui/material";
import styled from "@emotion/styled";
export default function App() {
const MainStyle = styled("div")(({ theme }) => ({
position: "fixed",
zIndex: 99999,
right: 0,
bottom: 0
}));
return (
<MainStyle>
<Box sx={{ transform: "rotate(-90deg)", backgroundColor: "blue" }}>
<Typography sx={{ color: "white" }}>CHAT WITH US!</Typography>
</Box>
</MainStyle>
);
}
这样做的问题是,有一半的框在屏幕之外,并且没有一直向右。
我的目标是让它一直在右角,但也显示整个框一样,对像https://proxy-seller.com/有他们的“与我们聊天,我们在线”只是我希望它在右边。
1条答案
按热度按时间yiytaume1#
writing-mode: vertical-rl;
您可以使用前面提到的css属性。writing-mode: vertical-rl
的简单html
示例,您可以从this了解更多信息。