0

我在 Wordpress 上做了一个搜索表。我已经根据自己的喜好设置了搜索表单的样式,并且在 Webkit 浏览器(Chrome 和 Safari)甚至 IE(有点)中似乎一切正常。不幸的是,Firefox 和 Opera 完全忽略了我的 CSS 样式,它甚至没有出现在 Firebug 中。

这可能是什么原因?我试过 -moz-appearance: none; 但这没有什么区别。

//in index.php

<span class="search">
 <?php get_search_form(); ?>
</span>



//in searchform.php

<form role="search" method="get" class="searchForm" action="<?php echo home_url( '/' ); ?>">    
 <div>
    <input type="text" value="Search" name="s" class="searchBox" onblur="if (this.value == '') {this.value = 'Search';}"onfocus="if (this.value == 'Search') {this.value = '';}" />
 </div> 
</form>



//style.css

.search {
 float: right;
 margin: 0 0 0 10px;
 background: none;
}

form.searchForm input {
 float: left;
 margin: 0px 8px 0px 0px;
 padding: 0;
 width: 50px;
 height: 30px;
 border: 0;
 border-bottom: 1px solid #000;
 background: none;
 color: #000;
 font-size: 16px;
 font-family:ProximaNova-Light,helvetica,arial,sans-serif;
 -webkit-transition:.2s;
 -moz-transition:.2s;
 -ms-transition:.2s;
 -o-transition:.2s;
 -webkit-appearance: none;
} 

form.searchForm input:focus {
 width: 180px;
}

网址:http: //jorenfrielink.com/beta2/

提前感谢您的帮助。我之前设计了一些表单,它们在 Opera 和 Firefox 中运行良好。

4

2 回答 2

0

您可以更改 CSS 那样它会起作用

.searchForm input
{
 float: left;
 margin: 0px 8px 0px 0px;
 padding: 0;
  width: 50px;
   height: 30px;
    border: 0;
   border-bottom: 1px solid #000;
   background: none;
   color: #000;
   font-size: 16px;
   font-family:ProximaNova-Light,helvetica,arial,sans-serif;
  -webkit-transition:.2s;
  -moz-transition:.2s;
  -ms-transition:.2s;
  -o-transition:.2s;
   -webkit-appearance: none;
 } 

.searchForm input:focus
{
width: 180px;
}
于 2013-05-20T14:22:01.950 回答
0

Firefox 遇到此规则时似乎停止读取 css 文件:

.archiveListWrap:hover > .archiveListImg img {
    -webkit-filter: grayscale(1);
    filter: url("data:image/svg+xml;
    filter: gray;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
}

看看这篇关于在 CSS 中使用 svg 的文章

于 2013-05-20T14:22:50.620 回答