1
With the @Emerson Vieira example, I made some changes to get the result you expect:
select {
background-image:
linear-gradient(0deg, transparent 0%, transparent 0%),
linear-gradient(0deg, transparent 0%, transparent 0%),
linear-gradient(to right, #ccc, #ccc);
background-position:
calc(100%) calc(1em + 1px),
calc(100%) calc(1em + 1px),
calc(100% - 1.5em) 0.2em;
background-size:5px 5px, 5px 5px, 1px 2.5em;
background-repeat: no-repeat;
width: 200px;
padding: 10px;
}
<select class="select">
<option>Arroz</option>
<option>Feijão</option>
<option>macarrão</option>
</select>
Already tried to use it like this. Ex: select { }
– Emerson Vieira
Here is an example that can help you: https://codepen.io/vkjgr/pen/VYMeXp
– Emerson Vieira
@Emersonvieira Helped a lot. Thank you!!
– usuario