首先,我想对“ underclass”一词表示歉意,但我不知道它的名字,我将在编辑该问题时对其进行编辑。
我的课看起来像这样:
.progressbar li {
font-family: 'Source Sans Pro', serif;
width: 12.5%;
list-style-type: none;
float: left;
font-size: 11px;
position: relative;
text-align: center;
text-transform: uppercase;
color: #555555;
}
然后尝试用jQuery这样更改 width 属性:
$('li.progressbar').css('width', '16.6%');
或
$('.progressbar li').css('width', '16.6%');
我尝试了其他一些变体,但没有一个起作用。您能告诉我如何正确选择此类吗?