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.
JavaScript
x
10
10
1
<Flex direction="column" gap="s">
2
GIBBERISHH{" "}
3
<Anchor
4
href=""
5
trackingId=""
6
label="Read the Walkthrough"
7
/>
8
detailing the required steps.
9
</Flex>
10
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!
Advertisement
Answer
Why not a “p” tag if it’s a paragraph:
JavaScript
1
10
10
1
<p>
2
GIBBERISHH{" "}
3
<Anchor
4
href=""
5
trackingId=""
6
label="Read the Walkthrough"
7
/>
8
detailing the required steps.
9
</p>
10