LoginSignup
2
2

More than 5 years have passed since last update.

リストの中央寄せ

Posted at

css

qiita.css
ul.center {
  text-align: center;
}

ul.center li {
  display: inline-block;
  vertical-align: top;
  margin: 0 10px 0 0;
}

/* IE6 */
ul.center li {
  _display: inline;
}

/* IE7 */
*:first-child+html ul.center li {
  display: inline;
}
2
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
2
2