如何在pdfmake中设置文本的背景颜色和填充
How to set the background color and padding of text in pdfmake
我有一个字符串,我想将其设置为 pdf 的标题。我尝试使用以下代码。但是背景没有正常出现。我想将背景颜色设置为整行,但它恰好位于文本下方。任何帮助将不胜感激。
var dd = {
content: [
{
text: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.',
style: 'header'
},
],
styles: {
header: {
fontSize: 18,
bold: true,
margin: [0, 0, 0, 10],
background:'blue',
color: 'white',
alignment:'center'
}
},
defaultStyle: {
// alignment: 'justify'
}
}
似乎无法设置文本的背景颜色和填充。
我尝试了另一种解决方案,方法是创建 table,只有它的 header 有一个没有边框的单列,它适用于我的场景。
var dd = {
content: [
{
style: 'header',
table: {
widths:'*',
body: [
[{
border: [false, false, false, false],
fillColor: '#5bc0de',
text: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.'
}]
]
}
},
]
}
我有一个字符串,我想将其设置为 pdf 的标题。我尝试使用以下代码。但是背景没有正常出现。我想将背景颜色设置为整行,但它恰好位于文本下方。任何帮助将不胜感激。
var dd = {
content: [
{
text: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.',
style: 'header'
},
],
styles: {
header: {
fontSize: 18,
bold: true,
margin: [0, 0, 0, 10],
background:'blue',
color: 'white',
alignment:'center'
}
},
defaultStyle: {
// alignment: 'justify'
}
}
似乎无法设置文本的背景颜色和填充。 我尝试了另一种解决方案,方法是创建 table,只有它的 header 有一个没有边框的单列,它适用于我的场景。
var dd = {
content: [
{
style: 'header',
table: {
widths:'*',
body: [
[{
border: [false, false, false, false],
fillColor: '#5bc0de',
text: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.'
}]
]
}
},
]
}