【发布时间】:2020-12-11 14:58:37
【问题描述】:
我有这个代码:
<div class = "flex-none flex-col bg-gray-500 border border-black rounded rounded p-5 ">
<div class=" border w-auto bg-gray-700 flex-none flex-col content-start justify-start ">
<div
class = "border border-red-200 w-auto inline-block flex flex-row content-start
justify-start bg-gray-900 cursor-pointer hover:bg-gray-700
border rounded border-black p-2 mt-2 ">
A
</div>
<div
class = "border border-red-200 w-auto inline-block flex flex-row content-start
justify-start bg-gray-900 cursor-pointer hover:bg-gray-700
border rounded border-black p-2 mt-2 ">
B
</div>
<div
class = "border border-red-200 w-auto inline-block flex flex-row content-start
justify-start bg-gray-900 cursor-pointer hover:bg-gray-700
border rounded border-black p-2 mt-2 ">
C
</div>
</div>
</div>
看起来像这样:
虽然我希望它像这样将宽度调整为内容大小:
【问题讨论】:
标签: html css flexbox tailwind-css