作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我必须在我的网页的 Bootstrap 中自定义按钮。它在 IE 上运行良好,但在 Chrome 上运行不佳。我哪里做错了。下面是我的 html。
.btn-secondary {
background-color: #283238;
color: #05a9d0;
border-color: #05a9d0;
border-radius: 0;
font-family:Helvetica Neue;
font-size:20px;
width:auto;
opacity:0.9;
border:1px solid;
height:auto;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
background-color: #283238;
color: #ffffff;
border-color: #05a9d0;
}
<div id="banner" class=" text-center vertical-center">
<div class="slide-top" id="valign-IE" data-plugin-options='{"speed":1500}'>
<img src="img/logo_page.svg" class="banner-logo"/><br />
<button class="btn btn-primaryLogin" onclick="document.location.href='signin.aspx'">Login</button>
<button type="button" class ="btn btn-secondary" >REQUEST ACCESS FOR SIGNUP</button>
</div>
</div>
最佳答案
window.location 在所有兼容的浏览器上都是读/写的。
document.location 在 Internet Explorer 中是只读的,但在基于 Gecko 的浏览器(Firefox、SeaMonkey)中是读/写的。
使用 window.location 而不是 document.location
关于c# - 定制的 Bootstrap btn 不适用于 chrome,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40798966/
我是一名优秀的程序员,十分优秀!