我不明白为什么 break \n 在下面显示的 Blotter 代码的“Explore \n more”短语中不起作用。我希望“更多”这个词出现在一个新的行中,但没有任何反应。有人有建议吗?
const blotterElems = [...document.querySelectorAll('[data-blotter]')];
blotterElems.forEach((el) => {
const text = new Blotter.Text("EXPLORE \n MORE", {
family: "'Butler'",
size: 100,
fill: "#fff",
fontWeight: 400,
paddingLeft: 100,
paddingRight: 100,
});