gpt4 book ai didi

css - 谷歌自定义搜索推到框外 Bootstrap IE

转载 作者:行者123 更新时间:2023-11-28 17:47:38 25 4
gpt4 key购买 nike

为了教育,我尝试以一种扁平化设计来制作我的网站,我使用 Bootstrap 作为框架。我安装了谷歌自定义搜索作为站点搜索。

在 firefox 中完全没有问题,但是当我在 IE 中打开我的网站时(通常的困惑过程),它被全宽地推到标题之外

搜索栏在 1000 像素或更小时达到 80% 宽度,但始终为 100%。 (我正在使用 IE 11)

我找不到任何应该关闭的代码

    .cse .gsc-control-cse, .gsc-control-cse {
background-color: transparent !important;
border: none !important;
}
.gsc-control-cse {
border:none !important;
background-color: transparent !important;
}
input.gsc-search-button, input.gsc-search-button:hover, input.gsc-search-button:focus {
border-color: none !important;
background-color: #3cb878 !important;
background-image: none;
filter: none;
}

input.gsc-input, .gsc-input-box, .gsc-input-box-hover, .gsc-input-box-focus {
border-radius: 5px;
}
input#gsc-i-id1.gsc-input0 {
background-image: none !important;
background-color: #fff;
}
input.gsc-search-button, input.gsc-search-button:hover, input.gsc-search-button:focus {
border-color: #369;
background-color: #3CB878;
background-image: none;
min-height:25px;
filter: none;
}

.gsc-search-box {
height: 100%;
margin-top: 20px;
display: inline-block;
}
/*google*/
.social .pull-left{
overflow: hidden;

}
#gsc-i-id1.gsc-input{
background-color: #fff;
background-image: none !important;
}
.gsc-control-cse, .gsc-control-cse{
height: 30px;
margin:0px !important;
padding: 0px !important;
border: 0px !important;
background-color: transparent !important;
}
.gsc-control-cse {
border: 0px !important;
background-color: transparent !important;
}
input.gsc-search-button{
height: 25px !important;
}
.gsc-input-box{
border-radius: 5px ;
background-image: none !important;
}
.gsc-search-button .gsc-search-button-v2 {
background-image: url(../img/search_box_icon.png);
background-repeat: no-repeat;
background-position: center center;
border: 0px !important;
}
.gsc-search-button .gsc-search-button-v2:hover {
background-color: #00a651 !important;
background-image: url(../img/search_box_icon.png);
}
.gsc-search-box .gsc-input {
line-height: 0px !important;
}

@media (max-width: 1000px) {
#___gcse_0{
width: 80%;
margin: 0 auto;
}

是否有可能 IE 正在努力处理媒体查询?

在线样本是http://jurjenfolkertsma.nl/bootstrap/

最佳答案

我通过向样式表添加更改来开始工作:

.navbar-right {
width: 200px; /* Change it if needed */
}

@media (max-width: 1000px) {
.navbar-right{
width: auto;
}
}

我看到的唯一为 .navbar-right 编写的 CSS 是 margin-right: -15px;。不知道这是故意的还是您的某些代码丢失了。 :)

关于css - 谷歌自定义搜索推到框外 Bootstrap IE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22941768/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com