React-Bootstrap中的“输入”较小

时间:2015-06-29 20:12:50

标签: css twitter-bootstrap reactjs react-bootstrap

如何制作较小的Input

以下是默认语法:

<Input type='text' value='' placeholder='Enter Entity'/>

哪会导致:

enter image description here

不幸的是,与按钮不同,bsSize='xsmall'在这种情况下不起作用。知道如何让它们变小吗? (如按钮here

2 个答案:

答案 0 :(得分:1)

对较大的输入使用类input-lg,对于较小的输入使用input-sm。这是基本的Bootstrap行为。

另请参阅this Bootstrap page以获取更多信息,其中包含输入组

答案 1 :(得分:0)

将此添加到您的Css:

input{
    width: 150px;
    height: 50px;
}