elementUI el-input el-select输入框 设置高度和宽度

//html模块
//改变el-input的宽高
.relicMapSearch /deep/ #input1 {
    width: pxToRem(310);
    height: pxToRem(40);
    min-height: pxToRem(40);
    position: relative;
}

//改变el-input的宽高
.relicMapSearch /deep/ #select {
    width: pxToRem(100);
    height: pxToRem(40);
    min-height: pxToRem(40);
    position: relative;
}

你可能感兴趣的:(elementui,javascript,css3)