php不显示html是因为没有关闭标签导致的,其解决办法就是重新写入完整的html代码为“ .class{backgroundcolor:red;}</styel>”即可。</p></blockquote> <p><strong><img src="https://img.php.cn/upload/article/202007/18/2020071810002183591.jpg" alt="php不显示html怎么办" ></strong></p> <p><strong>php中的html代码无法显示</strong></p> <p><strong>问题代码如下:</strong></p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><?php include('conn.php'); ?> <html> <head> <style type="text/css"> .class{ backgroundcolor:red; } </styel> </head> <body> <table class="class"> <tr> <td width=200px>t00</td><td>t01</td><td>t02</td> </tr> <tr> <td>t10</td><td>t11</td><td>t12</td> </tr> </table> </body> </html></pre><div class="contentsignin">登录后复制</div></div><p>那我改了之后表的背景颜色怎么显示不出来啊</p><p>推荐:《<a href="https://www.php.cn/course/list/29.html" target="_blank">PHP教程</a>》</p><p><strong>解决办法如下:</strong></p><p>这个问题超简单的</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><style type="text/css"> .class{ backgroundcolor:red; } </styel></pre><div class="contentsignin">登录后复制</div></div><p>没有关闭标签,应该是,写错了。