LoginSignup
3
2

More than 5 years have passed since last update.

display: inline-blockで横並びにしたときにできるへんな隙間をなくす

Posted at

親要素の font-size を 0 にして、inline-block で並べる要素に font-size を指定します。

<ul>
  <li>横に並べます</li>
  <li>横に並べます</li>
  <li>横に並べます</li>
</ul>
ul {
  font-size: 0;
}

li {
  display: inline-block;
  font-size: 16px;
}
3
2
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
3
2