0
我有一個循環,通過以下代碼4次,動態創建紙質菜單中的四個按鈕。聚合物1.0紙張大小調整
button = document.createElement('paper-button');
sectionDisplayName = <my string>;
console.log(">"+sectionDisplayName+"<");
Polymer.dom(button).setAttribute("section", sectionDisplayName);
Polymer.dom(button).setAttribute("raised");
Polymer.dom(button).setAttribute("style","white-space:pre-wrap");
Polymer.dom(button).innerHTML = sectionDisplayName;
當sectionDisplayName比按鈕的尺寸更短,按鍵縮小爲:
我如何可以強制將「目標」按鈕,以適應菜單的寬度?
謝謝。
嘗試增加'顯示:塊;'你的風格。另外,如果你實際上不需要HTML,那麼使用'textContent'而不是'innerHTML',這是一個很好的習慣,可以增強你對抗XSS的防禦能力。 –
謝謝@ScottMiles!我不得不將display:block添加到包含按鈕和按鈕的紙張項目的樣式中,但是這樣做的訣竅。我將切換回textContent。再次謝謝你。 – Dave