4段落の最後にリンクがあります。何かのようなもの:
Here is my text, and it's just an example of text to show
And I am wanting to wrap the last bit of text, which happens
to be a link, but I need the link to either stay on the line
that is the available width and not break to another line,
unless it can't fit left-aligned on that line like this
http://mylink.com
したがって、これの実際のコードは HTML では次のようになります。
<p>Here is my text, and it's just an example of text to show
And I am wanting to wrap the last bit of text, which happens
to be a link, but I need the link to either stay on the line
that is the available width and not break to another line,
unless it can't fit left-aligned on that line like this<br />
<a href="http://mylink.com">http://mylink.com</a></p>
ここで使用していますが、実際に表示されるテキストの量が画面にキャプチャされ、次のように表示される場合があるため、<br />
使用したくありません。<br />
Here is my text, and it's just an example of text to show And I am wanting to wrap
the last bit of text, which happens to be a link, but I need the link to either stay
on the line that is the available width and not break to another line, unless it can't
fit left-aligned on that line like this
http://mylink.com
したがって、上記のような状況では、<br />
タグを使用して分割しないようにする必要があり、代わりに次のようにレンダリングする必要があります。
Here is my text, and it's just an example of text to show And I am wanting to wrap
the last bit of text, which happens to be a link, but I need the link to either stay
on the line that is the available width and not break to another line, unless it can't
fit left-aligned on that line like this http://mylink.com
CSS経由でこれを行うことは可能ですか?タグをまったくtext-align
使用せずにこれを達成するために、おそらく何らかの価値がありますか? <br />
ただし、リンクが自然に行に収まる場合は、次の行に移動しないでください。代わりに、その行に留まるべきです。
ありがとう!