我使用CSS样式在我的网站上的输入按钮,但在IOS设备上的样式被Mac的默认按钮所取代。是否有一种方法可以为iOS设置按钮样式,或者有一种方法可以让一个超链接表现得像一个提交按钮?
当前回答
我自己最近也遇到了这个问题。
<!--Instead of using input-->
<input type="submit"/>
<!--Use button-->
<button type="submit">
<!--You can then attach your custom CSS to the button-->
希望这能有所帮助。
其他回答
请添加此css代码
input {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
今天我在使用primefaces (primeng)和angular 7时也遇到了同样的问题。 将以下内容添加到style.css中
p-button {
-webkit-appearance: none !important;
}
我还使用了一些bootstrap,其中有一个reboot.css,这覆盖了它(这就是为什么我必须添加!重要)
button {
-webkit-appearance: button;
}
我自己最近也遇到了这个问题。
<!--Instead of using input-->
<input type="submit"/>
<!--Use button-->
<button type="submit">
<!--You can then attach your custom CSS to the button-->
希望这能有所帮助。
-webkit-appearance:没有;
注意:使用引导样式按钮。它常用来表示响应。
你可能正在寻找
-webkit-appearance: none;
Safari CSS注释-webkit-appearance Mozilla Developer Network的-moz-appearance
推荐文章
- 我如何在HTML中创建一个泪滴?
- 我如何获得iOS 7默认的蓝色编程?
- UITapGestureRecognizer破坏UITableView didSelectRowAtIndexPath
- 在Objective-C中@property保留,赋值,复制,非原子
- 我怎么能强迫一个长字符串没有任何空白被包装?
- 6.5英寸屏幕的App store截图大小是多少?
- 如何在引导栏中居中内容?
- 我如何在NSAttributedString中创建一个可点击的链接?
- IE8问题推特引导3
- 是否有可能使一个div 50px小于100%在CSS3?
- 为什么CSS选择器/ HTML属性首选破折号?
- CSS选择器-具有给定子元素的元素
- iOS测试/规格TDD/BDD以及集成和验收测试
- 停止UIWebView垂直“弹跳”?
- 启动屏幕故事板不显示图像