在标记

时间:2015-10-28 10:20:41

标签: php html css html2pdf

我的问题是当我将内联CSS 放在这样的标记中时:

<div style='border : 1.5px solid black; color:red;'>...</div>
  

这只是导致问题的一个例子。

当我在 PHP 变量中使用它来使用 HTML2PDF 生成pdf时,不会解释第二个属性color: red;

$content2 = "<html>
                <head>
                       ...
                </head>
                <body>
                    <h3 style='margin-bottom: 0px;'>".$design."</h3>
                        <div style='margin: 15px;'>&nbsp;<strong>".$taille."</strong>&nbsp;-&nbsp;<i>".$scient."</i><br /></div>
                        <div style='border : 1.5px solid black; width:100px;'><img src='".$chemin."' style='width: 100px;' /></div><p style='margin-top : -75px; margin-right : -250px;'>origine :".$origine."</p>

                </body>
            </html>
 ";

请帮助我。

2 个答案:

答案 0 :(得分:2)

CSS使用冒号来定义值。您似乎多次使用等号来定义值。

答案 1 :(得分:0)

更改此颜色:红色; <div style='border : 1.5px solid black; color:red;'>...</div>