As kind a newbie I have a simple question. Having a textfield with background-color and border I want to give opacity value only to the background and not to the border:
#textfield {
background-color:#2875DE;
border:2px solid #2cb823;
}
#textfield.background-color {
filter:alpha(opacity=60);
}
This obviously won't work and any ideas of making the textfield with oval shape with opacity only for the background will be much appreciated.