- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
就是这样,我必须在提交按钮上有一张图片,但它根本没有出现。
我希望它看起来像这样:
现在看到我的是这样的,我不明白为什么它没有出现在页面上。
HTML
<div id="sogbar">
<input type="submit" name="sognu" class="sognu">
<div class="cl"></div>
</div>
CSS
#sognu {
background: url('/img/sogindhold/sognu.png') no-repeat;
float: right;
background: -moz-linear-gradient(#e4d24a,#dec83d);
background: -webkit-linear-gradient(#e4d24a,#dec83d);
background: -o-linear-gradient(#e4d24a,#dec83d);
background: -ms-linear-gradient(#e4d24a,#dec83d);
background: linear-gradient(#e4d24a,#dec83d);
box-shadow: inset 0 1px 1px rgba(255,255,255,.5);
-webkit-box-shadow: inset 0 1px 1px rgba(255,255,255,.5);
border: 1px solid #2a2c0f;
border-radius: 5px;
height: 35px;
width: 75px;
position: relative;
cursor: pointer;
}
#sognu:after {
display: block;
position: absolute;
content: '';
width: 16px;
height: 16px;
right: 0;
left: 0;
top: 14px;
bottom: 0;
margin: 0 auto;
}
最佳答案
我不确定你是如何尝试实现这个的,但如果你想在 #sognu
元素上显示图标。
似乎你定位了一个错误的元素,如果你想将这些声明应用到 input
元素,你应该使用前导句点 .
来选择元素类名。
即将 #sognu
更改为 .sognu
然后您可以为 background
属性使用多个值,如下所示:
.sognu {
float: right;
background: url('/img/sogindhold/sognu.png') 50% 50% no-repeat, -moz-linear-gradient(#e4d24a,#dec83d);
background: url('/img/sogindhold/sognu.png') 50% 50% no-repeat, -webkit-linear-gradient(#e4d24a,#dec83d);
background: url('/img/sogindhold/sognu.png') 50% 50% no-repeat, -o-linear-gradient(#e4d24a,#dec83d);
background: url('/img/sogindhold/sognu.png') 50% 50% no-repeat, -ms-linear-gradient(#e4d24a,#dec83d);
background: url('/img/sogindhold/sognu.png') 50% 50% no-repeat, linear-gradient(#e4d24a,#dec83d);
box-shadow: inset 0 1px 1px rgba(255,255,255,.5);
-webkit-box-shadow: inset 0 1px 1px rgba(255,255,255,.5);
border: 1px solid #2a2c0f;
border-radius: 5px;
height: 35px;
width: 75px;
position: relative;
cursor: pointer;
}
关于html - 提交 到达 根本没有图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22491851/
我遇到了一个似乎很独特的问题。我的 NSUbiquitousKeyValueStore 在模拟器中的启动之间根本不起作用。也就是说,我什至不是在谈论 iCloud 同步或类似的东西,我无法让它通过下面
首先,我使用的是 WiX 版本 3.5.2519.0,但我也在最新的 3.6 版本上测试了它,结果相同。 我很难确定 PatchFamily 究竟能过滤掉 torch 生成的差异的某些部分。按照手册中
我可以获取要呈现的“帮助主题”标题,但无法获取我定义的任何FIXTURES。 {{#each model}} 中的任何内容都不会渲染。这是我第一次使用 Ember,所以任何东西(字面意义上的任何东
我一直在尝试设置custom ajaxTransports for jQuery在我们的产品的某些场景下缩短某些工作流程。然而,我在让这些传输受到尊重方面取得了零成功(而我有很多工作 custom a
为什么纯无类型 lambda 演算经常被描述为无法使用? 有了合适的函数库,它会不会与任何其他函数式语言大致相同? 最佳答案 速度不是大问题。例如,您可以决定使用教堂数字但优化实现,以便像往常一样表示
我是一名优秀的程序员,十分优秀!