我不仅要继承盒子大小,还要继承字体类型,颜色等。 我调用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.">
答案 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}
我只是想帮忙。请不要点燃我。