Removing Indentation from Unordered Lists
When attempting to remove all indentation from a
Instead, it is recommended to set both the list style and left padding to "none":
ul { list-style: none; padding-left: 0; }
This approach effectively removes the default indentation associated with
Example:
<ul> <li>a</li> <li>b</li> <li>c</li> </ul>
Output:
* a * b * c
The above is the detailed content of How to Remove Indentation from Unordered Lists in CSS?. For more information, please follow other related articles on the PHP Chinese website!