为多个类指定公共fieldType

时间:2013-11-11 15:27:06

标签: css css3 twitter-bootstrap

使用bootstrap尝试设置标签宽度,如下所示:

.col-md-12 label,input {
    width:38%;
}

为多个类提供相同的值,我试过:

.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 label {
    width:18%;
}

但它没有用。这样做的正确方法是什么?

1 个答案:

答案 0 :(得分:1)

试试:

.col-md-12 label, .col-md-12 input {
    width:38%;
}

.col-xs-12 label,
.col-sm-12 label,
.col-md-12 label,
.col-lg-12 label {
    width:18%;
}