我有一个包含AngularJS和Bootstrap的页面。 它在(德语和)测试版中在线:teacher.scool.cool
这些页面有一个透明的固定标题div。没有针对点击的具体配置。
[~]# md5sum /usr/bin/python2.6
71494aa9082392bff9f93b725773ec39 /usr/bin/python2.6
[~]# md5sum /usr/bin/python
71494aa9082392bff9f93b725773ec39 /usr/bin/python
我读到了.header{
position: fixed;
top: 0;
width: 100%;
color: #FFF;
background: rgba(150, 150, 150, 0.5);
text-align: center;
}
。
按钮本身也没有特定的配置。例如,他们有类pointer-events: none
。里面只是一个Glyphicon。
如何禁用点击率?
答案 0 :(得分:0)
这不是“点击”问题 - 您的按钮只会在标题的顶部上显示(因为它们会在文档的后面部分显示,并且设置了position:relative
内部span
元素。)
只需为标题添加z-index
即可修复:
#master > #master-header {
/* your other existing stuff here */
z-index: 1;
}