tcpdf中的列表样式图像


list style image in tcpdf

如何将列表样式的图像属性设置为tcpdf中的列表?下面是我的代码

<style>
  .content{
    color: #111;
    font-size:12px;
    font-weight:normal;
  }
  .title{
    color: #3e3e3e;
    font-size:14px;
    font-weight:bold;
  }
  ol,ul{
    list-style-image: url('images/leaf_icon.jpg');
  }
</style>

title and content divs获取css,但不在ol,ul

知道如何做到这一点吗?

我在tcpdf:中为集合列表样式的图像属性找到了这一点

<style>
    ul{
        list-style-type:img|jpg|1|1|path/to/file/li_puce.jpg;
    }
</style>

类型|image_type|size_x|size_y|path_file

对不起我的英语