我一直在尝试创建垂直文本部分标题为我的网站上的每一节,但我一直很难尝试与其他组件对齐。我将标题和内容作为两个元素放在一个Flex框中。我想把标题放在它的flex元素的右上角,但我不知道如何实际做到这一点。
我听说origin-DIRECTION
css类可以帮助解决这个问题,但当我尝试它时,它所做的只是将文本扔到flex框周围,有时它会通过其他组件进行剪辑。
Image of the problem; made background green for visibility.
下面是我的App组件中的代码。
<div className="flex my-[35vh]">
<SectionCard name={"Projects"} />
<Projects />
</div>
下面是我的SectionCard组件的代码。
export const SectionCard: React.FC<{ name: string }> = ({ name }) => {
return (
<div className="flex font-metropolis font-bold text-3xl items-center gap-8 -rotate-90">
<div className="bg-black h-2 w-[10rem]"></div>
<p>
{name}
</p>
</div>
);
}
1条答案
按热度按时间pu3pd22g1#
1.使用flex box
您应该使用
justify-content: end
并删除item-center类}
2.使用仓位规则
只要去掉内部的flex和一些css的位置规则,比如绝对和相对就可以了。
我刚刚删除了类
flex items-center gap-8