Skip to content Skip to sidebar Skip to footer

HTML Dropdown Menu Remove White Space Between LI Element

I'm using image as dropdownlist items and found that there are unnecessary white space in between each of the element and hence wondering if it's possible to remove all of the whit

Solution 1:

 <style>
    li{
        display: block;
        border: 0px;
    }
</style>

add this style hope it will work


Solution 2:


Post a Comment for "HTML Dropdown Menu Remove White Space Between LI Element"