从我的网站看下面的图片:www.kokorugs.com
我正在使用 Boostrap,并且我相信存在一些冲突的 CSS 样式。
问题是我看不到 Google 的 CSS,也无法弄清楚如何覆盖这种样式。
我的代码(来自谷歌)如下:
<aside class="box" style="padding:10px 0;">
<script>
(function() {
var cx = '009058734720051694368:e41h4lf-hsk';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
'//www.google.com/cse/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
<gcse:search></gcse:search>
</aside>
我的“盒子”类的 CSS 是无关紧要的,但我会包括它以避免任何问题:
.box {
background: #ffffff;
border: 2px solid #bcd78d;
border-radius: 15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
margin-top: 10px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
感谢您在删除此双边框方面提供的任何帮助。谢谢!
更新:
当我尝试这个 CSS 规则时:
* {
border: none !important;
}
只有谷歌的边框被删除了。图片如下: