我正在尝试将搜索文本框的大小增加到大于input-lg
的大小(使用Bootstrap 3)。那可能吗?在Bootstrap 3文档或SO帖子中找不到多少。
答案 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 */
}