Possible Duplicate:
CSS Select Selector
I'm trying to add space on the left of my dropdownlist without success.
Here is what I tried:
.editor-field input[type=select]
{
margin-left: 250px;
}
Any idea?
There is no input[type=select]
. You probably meant select
, as in
.editor-field select
{
margin-left: 250px;
}
A <select>
box isn't an <input type="select" />
. It's a <select>
;
.editor-field select {
margin-left: 250px;
}
should work.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With