如何使Bootstrap.css <select>继承CSS中</select> <input />的属性?

时间:2016-02-16 07:45:38

标签: html css forms

我不仅要继承盒子大小,还要继承字体类型,颜色等。 我调用select类似于输入(具有相同的类)但仍然无法工作:

    <input type="text" class="form-control" placeholder="Your Name *" id="name" required data-validation-required-message="Please enter your name.">

    <select class="form-control" required data-validation-required-message="Please enter the number of passengers.">

2 个答案:

答案 0 :(得分:1)

请提供您的css课程然后可以回答。

在这个小提琴中,它正在运作。

`https://jsfiddle.net/352tohbh/`

答案 1 :(得分:0)

添加一个自定义css并在其中添加一个类名元素,然后在CSS中调用它。

<强> HTML

<input type = "text" class = "inputs" ....>
<select class = "inputs" ....>

<强> CSS

.inputs{ //your style here }

或者只是简单地从你的CSS中调用它 的 CSS

input[type=text],select{ your style here}

我只是想帮忙。请不要点燃我。