0

我正在使用以下插件

阿贝科夫曼/生日选择者

这会自动生成以下html代码

<fieldset class='birthday-picker'>
 <select class='birth-year' name='birth[year]'></select>
 <select class='birth-month' name='birth[month]'></select>
 <select class='birth-day' name='birth[day]'></select>
 <input type='hidden' name='birthdate' />
</fieldset>

它看起来像以下。我想要在一行中的所有选择框。有没有人遇到过类似的情况。

在此处输入图像描述

4

2 回答 2

0

怎么样:

.birthday-picker select
{
  display: inline-block;
}
于 2013-08-15T09:33:13.883 回答
0

试试这个:

.birthday-picker select{
    float:left
}
于 2013-08-15T09:38:47.683 回答