我想对齐我的文本,这样当我发送消息时,它出现在左侧,但它是回复,文本出现在右侧......我不知道是否使用“text-align:left”,位置或对齐。这是我的代码
if ($row['username'] == $username)
{
$color = 'blue';
$align:left; // dont know if this is right
}
else
{
$color = 'red';
$align:right; // dont know if this is right
}
echo '<i><p style="font-family:arial;color:'.$color.';font-size:15px;"> <strong>' . $row['username']. '</strong>: ' . $mymessage.'</i></p>';
}