0

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

4

1 回答 1

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 */
}
于 2017-07-08T14:40:46.707 回答