我正在移动我的网站使用cake php,之前我只需要在我的项目print("<img class='custom' alt='' src='$dish_image' />");
中包含这样的图像,因为你可以看到我包含了要使用的css类。但现在使用cake php我不知道如何实现,因为我的图片标签看起来像这样
echo $this->Html->image($dishes['Dish'][0]['dish_image'], array("alt" => ""));
所以我不确定在哪里应用自定义css ... css是在一个单独的css文件中。
任何帮助将不胜感激/
答案 0 :(得分:2)
这应该这样做:
<?php echo $this->Html->image($dishes['Dish'][0]['dish_image'], array(
"class" => "custom",
"alt" => ""
)); ?>
祝你好运!