Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/symfony/6.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Twitter bootstrap 输入文本框大于输入文本框_Twitter Bootstrap_Twitter Bootstrap 3_Twitter Bootstrap Form - Fatal编程技术网

Twitter bootstrap 输入文本框大于输入文本框

Twitter bootstrap 输入文本框大于输入文本框,twitter-bootstrap,twitter-bootstrap-3,twitter-bootstrap-form,Twitter Bootstrap,Twitter Bootstrap 3,Twitter Bootstrap Form,我正在尝试将搜索文本框的大小增加到大于input lg(使用Bootstrap 3)的大小。可能吗?在bootstrap3文档中找不到太多内容。我最后做了以下工作。感谢@gianni的评论 HTML <input class="form-control input-lg searchbox" name="query" type="text" autocomplete="off"> 您需要添加自定义css,或者如果元素需要遵循grid@gianni谢谢-我使用自定义css。太好了!

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

我最后做了以下工作。感谢@gianni的评论

HTML

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

您需要添加自定义css,或者如果元素需要遵循grid@gianni谢谢-我使用自定义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 */
}