0

我正在尝试做的事情:在文本框右侧添加搜索图标

在此处输入图像描述

我在 [css] 中使用的代码是这样的:

.tb4 {
background: #3f4c6b; /* Old browsers */
background: -moz-linear-gradient(top,  #3f4c6b 0%, #3f4c6b 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3f4c6b), color-stop(100%,#3f4c6b)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #3f4c6b 0%,#3f4c6b 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #3f4c6b 0%,#3f4c6b 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #3f4c6b 0%,#3f4c6b 100%); /* IE10+ */
background: linear-gradient(to bottom,  #3f4c6b 0%,#3f4c6b 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3f4c6b', endColorstr='#3f4c6b',GradientType=0 ); /* IE6-9 */
 background: url(web.png) top right no-repeat;
 padding: 4px 4px 4px 22px;
 height: 18px;
 border: 1px solid #494949;
}

我得到的结果是:

在此处输入图像描述

  • 我的主文件夹中有 web.png。*
4

3 回答 3

0
background: url(web.png) top right no-repeat;

这是推翻其他background设置。您已经尝试过background-image,但我怀疑这与渐变设置冲突,渐变设置有效地使用了背景的图像属性。

补充:这个SO 主题表明可以将渐变与图像结合起来。

我会在搜索框之后立即添加按钮,并使用定位(可能是负的左边距)将其带回文本框。如果文本框是一个input元素,那么我可能会使用图像作为 a 的背景label,并将这个标签带回左侧,也许用 az-index将其放在文本框上方。

于 2013-06-16T01:56:25.733 回答
0

渐变和背景图像会发生冲突。尝试:

.tb4 {
  /* as above but without the background line for web.png */
  position: relative; /* and add this line */
}
.tb4:after { /* and this rule */
  content: "";
  display: block;
  width: 20px; /* change dimensions as needed to match image */
  height: 20px;
  background: url(web.png) top right no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}
于 2013-06-16T01:59:55.530 回答
0

正确的方法是:

background: #3f4c6b url(web.png) top right no-repeat;/* Old browsers */
background: url(web.png) top right no-repeat,-moz-linear-gradient(top,  #3f4c6b 0%, #3f4c6b 100%); /* FF3.6+ */
background: url(web.png) top right no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3f4c6b), color-stop(100%,#3f4c6b)); /* Chrome,Safari4+ */
background: url(web.png) top right no-repeat, -webkit-linear-gradient(top,  #3f4c6b 0%,#3f4c6b 100%); /* Chrome10+,Safari5.1+ */
background: url(web.png) top right no-repeat ,-o-linear-gradient(top,  #3f4c6b 0%,#3f4c6b 100%); /* Opera 11.10+ */
background: url(web.png) top right no-repeat ,-ms-linear-gradient(top,  #3f4c6b 0%,#3f4c6b 100%); /* IE10+ */
background:url(web.png) top right no-repeat , linear-gradient(to bottom,  #3f4c6b 0%,#3f4c6b 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3f4c6b', endColorstr='#3f4c6b',GradientType=0 ); /* IE6-9 */

所以图像可以位于渐变之上。
top right好坐标给吗?

于 2013-06-16T02:35:11.657 回答