简体   繁体   中英

How to align a link in the middle of a paragraph?

I have been struggling with adding a link with the text 'here' to flow inline with the entire paragraph. Essentially what I would like to do is

'Gibberish here detailing the required steps.'

How can I accomplish this so as to have everything in a single line? I have tried doing this but it gives me the results attached in the screenshot.

          <Flex direction="column" gap="s">
          GIBBERISHH{" "}
          <Anchor
            href=""
            trackingId=""
            label="Read the Walkthrough"
          />
          detailing the required steps.
        </Flex>

在此处输入图像描述

Edit: Also tried changing the Flex direction to a row but I get this result which is not what I need either. Any suggestions would be great!

在此处输入图像描述

Why not a "p" tag if it's a paragraph:

    <p>
          GIBBERISHH{" "}
          <Anchor
            href=""
            trackingId=""
            label="Read the Walkthrough"
          />
          detailing the required steps.
    </p>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM