We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A card with a paragraph that has a link that spans multiple lines will fail to render text around the link inline with the link.
<div class="c-card …">
.card
<p>Lots of silly text. … Lots of silly text.</p>
<p>
The following all wraps as one line of text:
Lots of silly text. Very very long name. Lots of text.
The link in the following is treated independent of the text around it:
Lots of silly text. Very very long name. Lots of silly text.
A. With Bootstrap loaded, add a class d-inline on the link. B. Without Bootstrap, add style display="inline" or display: unset.
d-inline
display="inline"
display: unset
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Overview
A card with a paragraph that has a link that spans multiple lines will fail to render text around the link inline with the link.
Steps
<div class="c-card …">
..card
, have a<p>Lots of silly text. … Lots of silly text.</p>
.<p>
, have a "Very very long name." link.Expected
The following all wraps as one line of text:
Actual
The link in the following is treated independent of the text around it:
Workaround
A. With Bootstrap loaded, add a class
d-inline
on the link.B. Without Bootstrap, add style
display="inline"
ordisplay: unset
.The text was updated successfully, but these errors were encountered: