html list items getting auto indented fix code example
Example 1: css remove list indent
ul { /** works with ol too **/
list-style: none; /** removes bullet points/numbering **/
padding-left: 0px; /** removes actual indentation **/
}
Example 2: Ul or ol with no indent
ul, ol {
margin-left:0px;
padding-left: 0px
}