sharepoint2013 中设置richtextbox 宽度100%

由于在2013中设置控件的with属性不起作用,于是采用了css的方法来设置richbox的宽度

<style>
        table.ms-rtetoolbarmenu{
            width: 100% !important;
        }
        .ms-rtelong {
            width: 100% !important;
        }
    </style>


你可能感兴趣的:(Web,SharePoint,richTextBox,richbox)