PHP表下的背景图像 - 方法

时间:2015-04-06 11:12:11

标签: php html css image background

在PHP生成的表下插入背景图像的最佳方法是什么? I.E.具有php生成数据的表将叠加在背景图像上。原则上,我正在寻找一种简单明了的方法。感谢。

1 个答案:

答案 0 :(得分:1)

试试这个。给你的表添加类名

<?php
echo '<table class="table1">';
echo '</table>';
?>
css
  .table1{
background-image:url('image/silver.jpg');  //replace your correct path
background-repeat:no-repeat;
background-size:cover;

}