输入大于input-lg的文本框

时间:2017-07-08 11:11:25

标签: twitter-bootstrap twitter-bootstrap-3 twitter-bootstrap-form

我正在尝试将搜索文本框的大小增加到大于input-lg的大小(使用Bootstrap 3)。那可能吗?在Bootstrap 3文档或SO帖子中找不到多少。

1 个答案:

答案 0 :(得分:0)

我最终做了以下事情。感谢@ gianni的评论。

<强> HTML

<input class="form-control input-lg searchbox" name="query" type="text"  autocomplete="off">

<强> CSS

.searchbox {
  font-size: 23px;
  height: 60px;
  padding: 1px 7px; 
  text-transform: capitalize; /* Capitalises first letter of each word only 'visually', value sent is as-typed */
}