我对 css 和 Sencha Touch 2 非常陌生。在编写有关 Sencha Touch 2 的一些教程时,我看到一个 CSS 文件的代码如下
/* Increase height of list item so title and narrative fit */
.x-list .x-list-item {
min-height: 10.5em!important;
height:7.5em;
}
/* Move the disclosure button up to account for the list item height increase */
.x-list .x-list-disclosure {
position: absolute;
bottom: 4.0em;
right: 0.10em;
}
是 .x-list .x-list-item
一个css嵌套概念和x-list
一个类名吗?另外,这个概念是纯 CSS 概念还是 Sencha Touch 概念?