Answers for "remove arrow dropdown html"

1

select list hide default arrow

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}
Posted by: Guest on August-24-2021
1

dropdown with arrow in html

<select class="select1">
    <option href="#">Dropdown</option>
    <option href="#">Dropdown</option>
    <option href="#">Dropdown</option>
    <option href="#">Dropdown</option>
</select>

<style>
    .select1{
        border: none;
        background-color: cyan;
        padding: 2px;
    }
    
    .select1:hover{
        background-color: blue;
        padding: 10px;
    }
    
</style>
Posted by: Guest on July-23-2021

Browse Popular Code Answers by Language