0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

はじめに

今回は幅が狭くなったときに単語ごとに改行し、自然なレスポンシブデザインにする方法をご紹介します。

課題

image.png

上記のようにただテキストをならべると単語の途中で改行されてしまい、見栄えや可読性が悪いです。

やり方

spanタグで単語ごとに囲うとレスポンシブ対応ができます。

sample.html
         <div>
		<span>りんご</span>
		<span>すいか</span>
		<span>ぶどう</span>
	  </div>

さらに、spanタグに
display: inline-block;を付与します。

globals.css
 span {
      display: inline-block;
}

そうするとspanタグごとに綺麗に折り返しすることができます。
image.png

さらに改行すると
image.png

おわりに

いかがだったでしょうか。
簡単に綺麗な改行ができるので非常に使い勝手が良いです。
ぜひ試してみてください!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?