現在、複数の見出しタグと css クラスを使用して、下の画像に示す効果を実現しています。単一の見出し/行と css を使用してこれを達成する方法はありますか?
現在のコード:
<h2 class="heading">Hi guys, How can i achieve this effect using just a single</h2>
<div class="clearfix"></div>
<h2 class="heading">line of text and css. Right now i am using</h2>
<h2 class="heading">multiple <h2> tags and a css class to achieve this effect.</h2>
<h2 class="heading">Is it possible to achieve this only with css or do i have to use Javascript as well?</h2>
期待されるコード
<h2 class="heading">Hi guys, How can i achieve this effect using just a single line of text and css. Right now i am using multiple <h2> tags and a css class to achieve this effect. Is it possible to achieve this only with css or do i have to use Javascript as well?</h2>
私によると、これの主な問題は、フォントサイズやパディングなどを小さくしないとレスポンシブにできないことです。
また、レスポンシブにしても、他のタグやJavaScriptを使用しないと、必要な場所に改行を追加できません。
どうやってこれを回避しましたか?