Sencha Touch 2“TouchStyle”示例

时间:2012-03-21 16:22:06

标签: sencha-touch extjs

我正在使用此示例来尝试学习Sencha Touch。我有什么应该是一个非常简单的要求,但我很难过。有谁知道如何删除主屏幕上的空类别(顶行中间或左起第二个)?我一直在梳理代码,无法弄清楚这个配置的位置。

http://dev.sencha.com/deploy/touch/examples/production/touchstyle/index.html

感谢您的帮助

1 个答案:

答案 0 :(得分:1)

您是否尝试使用Chrome / Safari开发人员工具检查元素?如果你有,你会立即得到简单的解决方案。但是,这是创造额外空间的css:

body:not(.x-phone).x-landscape .categories-list.root 
.categories-list-item:first-child {
    margin-right: 345px;
}

使其保持正确:0px;它会起作用。