LoginSignup
0
1

More than 3 years have passed since last update.

[CSS]リストに置いてのcssメモ書き

Posted at
css
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  float: left;
  padding-right: 10px;
}

※ポイント※

①「margin: 0;」「padding: 0;」は
 ul がデフォルトで持っている幅を消すためのもの。

②「padding-right: 10px;」は文字間に幅をもたせる。

③「 list-style: none;」で黒点を消す!

0
1
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
1