Answers for "css how to remove indent from ul"

CSS
0

css remove list indent

ul { /** works with ol too **/
    list-style: none; /** removes bullet points/numbering **/
    padding-left: 0px; /** removes actual indentation **/
}
Posted by: Guest on June-29-2020

Code answers related to "css how to remove indent from ul"

Browse Popular Code Answers by Language