如何调整SharePoint InputformTextbox的宽度

来源:互联网 发布:手机淘宝开店认证步骤 编辑:程序博客网 时间:2024/05/19 10:55

方案一:

var name = "<%= ReportTextBox.ClientID %>"; 

(document.getElementById(name + "_toolbar")).style.width = "100%"; 

(document.getElementById(name + "_iframe")).style.width = "100%"; 

方案二:

.ms-long{
width:90% !important;
}
.ms-longer{
width:90% !important;
}
.ms-rtelong{
width:90% !important;
}
.ms-rtelonger{
width:90% !important;
}

原创粉丝点击