LoginSignup
1
4

More than 5 years have passed since last update.

ul li で・をなくして左詰めにしたい

Posted at

お世話になっております。

未だにidとclassの指定方法が曖昧かも知れませんが

<div id="categories">
<ul>
<li><a href="soft1.html">soft1</a></li>
<li><a href="soft2.html">soft2</a></li>
<li><a href="soft3.html">soft3</a></li>
<li><a href="soft4.html">soft4</a></li>
</ul>
</div>

div#categories ul{
    list-style-type: none;
    text-align: left;
}

で上手く動作するはずですよね???

((+_+))私の勘違いなのだろうか……

1
4
5

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