Cover the inline style

在SharePoint 2013的seattle.master 中提供了 '#s4-titlerow' 这个division,我现在要删掉这个division,

开始的时候我直接 用 $('#s4-titlerow').hide(), 发现不好用, F12之后发现,原来SharePoint 2013中已经为'#s4-titlerow'提供了inline style


这个inline style使得jquery语句没有效果,所以在查找了资料后,最终的解决方法是:

在css文件中添加 css:

#s4-titlerow
{
    display:none !important;
}

这样就可以了, 以后遇到了inline style的情况也可以用这种方式来解决


你可能感兴趣的:(SharePoint,Css)