本文介绍了输入[type = select]对我不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试在下拉列表左侧添加空格,未成功.
I'm trying to add space on the left of my dropdownlist without success.
这是我尝试过的:
.editor-field input[type=select]
{
margin-left: 250px;
}
有什么主意吗?
推荐答案
没有input[type=select]
.您可能是说select
,如
.editor-field select
{
margin-left: 250px;
}
这篇关于输入[type = select]对我不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!