Removing the bullets from unordered lists
Posted: 15 Nov 2014, 08:27
I have created an unordered list, and I want to remove the bullets.
Is it possible to have a list without bullets?
Is it possible to have a list without bullets?
Web Development and Programming Courses
https://coursesweb.net/forum/
Code: Select all
ul {
list-style-type: none;
}
Code: Select all
ul li {
list-style-type: none;
}