Picture of corresponding example
我想将Hello文本移动到CapName的边框旁边而不是下面。有什么想法吗?
<div className='h-screen dark:bg-gray-900 grid items-center justify-items-center'>
<div className='h-20 w-3/5 dark:bg-gray-500 border-2'>
<div>
<div className='border-2 p-2 w-2/5 h-full flex items-center '>
<h1 className='text-2xl text-white'>Capsule # / CapName</h1>
</div>
<div>
<h1 className='text-white'>Hello</h1>
</div>
</div>
</div>
</div>
我试过将Hello文本的div移到其他地方,但它们将Hello文本完全从大型div容器中删除。
2条答案
按热度按时间cwdobuhd1#
您是否正在寻找类似this的内容?
还有几个备选的主意给你。。
Layout Using Grid
wlzqhblo2#
this布局是你想要的吗?
您需要将
flex
属性包含到包含其他2个子div的父div中,如下面的注解所示您的代码
更正编码
见现场代码here