【发布时间】:2018-11-03 10:20:16
【问题描述】:
我在我的 laravel 应用程序中使用以下 div,目前我有寄宿风格,现在我需要颜色背景为红色 adtype ==1 和其他绿色。
<div style="border-style: solid;
color: {{ $vehicule->adtype === 1 ? 'black' : 'blue' }} ">
<img src="/images/{{ $upload->resized_name }}" height="150" width="250">
</div>
我该怎么做?
【问题讨论】: