需要帮助引导3按钮样式

问题描述 投票:0回答:1

我的引导程序3按钮样式存在此错误,需要帮助

我用html,css,bootstrap.jquery和json文件制作了一个小游戏

问题开始好了enter image description here

这是初始窗口,如果用户单击正确的答案,则会发生enter image description here

任何人都可以帮助我解决此问题的方法!

我尝试this.blur();我尝试在CSS中进行很多更改,但无法解决此问题(我使用的CSS)

.btn-default,
.btn-default.active:focus,
.btn-default.active.focus {
    background-image: -webkit-linear-gradient(top,#fc9c36 0,#8e3016 100%);
    background-image: -o-linear-gradient(top,#fc9c36 0,#8e3016 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,from(#fc9c36),to(#8e3016));
    background-image: linear-gradient(to bottom,#fc9c36 0,#8e3016 100%);
    color: white;
    font-size: large;
    text-shadow: 0 1px 0 #000;
}

    .btn-default.active:hover,
    .btn-default:active:hover {
        color: white;
        background-color: #8e3016;
        border-color: #fc9c36;
    }

    .btn-default:focus{
        outline:0 !important;
    }

谢谢。

jquery html twitter-bootstrap-3
1个回答
0
投票

我删除了引导程序常规主题并调整了CSS

© www.soinside.com 2019 - 2024. All rights reserved.