As the title suggests, I am trying to figure out how to use text as a background instead of an image for my little application. I am currently customizing a drop-down button by changing the button to an upside-down triangle using HTML code ▼. Instead of adjusting the z-index or using any complex methods, I simply want to place a character to represent the arrow. I considered leaving it blank, but I believe users might be confused about the purpose of the menu. Therefore, I have decided to use the upside-down triangle.
Here is the CSS code I am using for the drop-down list:
select {
border: none;
overflow: hidden;
background: no-repeat right #ffffff;
-moz-appearance: none;
-webkit-appearance: none;
text-indent: 0.01px;
text-overflow: '';
}