虽然这可能很简单,但我不知道如何使用我的站点 css 自定义 Google 自定义搜索栏 API。我已经尝试应用几个宽度受限的预定义 css 类,div
但它的搜索栏似乎仍然不合时宜iframe
。
这是我的代码:如何将 CSS 应用到它
<html>
<head>
<div width="100%" id="cse" style="width: 100%;">Loading</div>
<script src="http://www.google.com/jsapi" type="text/javascript">
</script>
<script type="text/javascript">
google.load('search', '1', {language: 'en', style: google.loader.themes.V2_DEFAULT});
google.setOnLoadCallback(function() {
var customSearchOptions = {};
var customSearchControl = new google.search.CustomSearchControl('009437919812836441502:rka9ujkwvwe', customSearchOptions);
customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
customSearchControl.draw('cse');
}, true);
</script>
</head>
</html>
或者有可能吗?