How to Remove Indentation from Unordered Lists Without Negative Text-Indent?

Linda Hamilton
Release: 2024-11-17 16:26:01
Original
613 people have browsed it

How to Remove Indentation from Unordered Lists Without Negative Text-Indent?

How to Remove Item Indentation from Unordered Lists

Question:

Despite attempts to reset margin, padding, and text-indent, the indentation in an unordered list (ul) remains. Is it necessary to resort to negative text-indent to eliminate this indentation?

Answer:

No, negative text-indent is not the only solution.

To remove indentation from a ul, set its list style and left padding to nothing:

ul {
  list-style: none;
  padding-left: 0;
}
Copy after login

This inline example demonstrates the code's effectiveness:

<ul>
  <li>a</li>
  <li>b</li>
  <li>c</li>
</ul>
Copy after login

The above is the detailed content of How to Remove Indentation from Unordered Lists Without Negative Text-Indent?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template