Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jquery 移动导航栏顶端的所有项目都有一个明亮的像素行(某种反射左右)。
样本
CSS需要覆盖哪些属性才能删除导航栏顶部的这一行突出显示的像素(我认为是 ui-btn-inner)?
CSS
在 jquery.mobile-1.2.0.css:732 上覆盖此规则。
.ui-btn-inner { border-top: 1px solid white; border-color: rgba(255, 255, 255, .3); }
所以像:
.ui-btn-inner { border-top: none; }