我可以使用if語句爲css嗎?如果其他人爲css
這就是我想要的文本的顏色改變:
<?php echo $status; ?>
將有2狀態:待&交付 等待將是紅色和交付將是綠色的
我可以像做(對CSS):
.pending {text-decoration:underline; color:red;}
.delivered {text-decoration:underline; color:green;}
如果else語句:
if ($status==delivered)
{
//this is where i don't know what to do and code
}
else
{
//and here
}
我應該放什麼?或者其他解決方案?
如果您發現任何答案有幫助,請接受它,然後單擊樂譜下方的勾號圖標。 –