我试图弄清楚添加WebPart时如何修改CSS。
该想法是使添加的Web部件的背景跨所有列,例如,Web部件添加在2列页面的左列中。背景将跨所有CanvasZone行。不仅仅是添加Web部件的列。
更新:
这是我在render方法中的代码。我正在使用HelloWebPart来使事情变得非常简单
public render(): void {
this.domElement.innerHTML = `
<div class="${ styles.helloWorld }">
<div class="${ styles.container }">
<div class="${ styles.row }">
<div class="${ styles.column }">
<span class="${ styles.title }">Welcome to SharePoint!</span>
<p class="${ styles.subTitle }">Customize SharePoint experiences using Web Parts.</p>
<p class="${ styles.description }">${escape(this.properties.description)}</p>
<a href="https://aka.ms/spfx" class="${ styles.button }">
<span class="${ styles.label }">Learn some more</span>
</a>
</div>
</div>
</div>
</div>`;
jQuery(function(){
jQuery('.helloWorld_385074c7').closest('div.CanvasZone').css({
'background-color': 'green'
});
});
}