2

我正在尝试将一个 omg 与文本对齐,但标签<p>断了线。我想做这样的事情

在此处输入图像描述

但我的代码就是这样做的

在此处输入图像描述

,所以这是我的代码:

       <div class="mb-10 mx-auto w-full max-w-sm fixed top-4 left-6 inline-block">
          <div >
            <a href="">
              <img src="../Assets/Img/logo.svg" class="h-10 w-10" alt="">
              <div class="space-y-2 text-left">
                <p class="font-bold text-purple-700 text-2xl">Vuexy</p>
              </div>
            </a>
          </div>
        </div>
4

1 回答 1

1

您可以将flex实用程序类应用于您的a元素。

<div class="mb-10 mx-auto w-full max-w-sm fixed top-4 left-6 inline-block">
  <a href="" class="flex">
    <img src="../Assets/Img/logo.svg" class="h-10 w-10 mr-4" alt="">
    <p class="font-bold text-purple-700 text-2xl">Vuexy</p>
  </a>
</div>
于 2021-12-06T17:55:20.200 回答