我想在同一行中放置一个TextInput和一个SelectInput。但它没有对齐good.inline-block
答案 0 :(得分:1)
这些Material UI组件的结构存在一定的特质。要将与样式相关的道具传递给基础组件,请使用elStyle属性并自定义给定的css值,直到它们对齐为止。
答案 1 :(得分:0)
.test{
height:40px;
width:200px;
box-sizing: border-box;
}
<input class="test">
<select class="test">
<option>Test1</option>
<option>Test2</option>
</select>