Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何以白色文本进行以下输出?跨度?分区?
<?php global $current_user; get_currentuserinfo(); echo 'Welcome, ' . $current_user->user_firstname . "\n"; ?>
尝试
echo 'Welcome,<span class="white-text">' . $current_user->user_firstname . "</span>\n";
css
.white-text{ color:white; }
您可以使用 span 和 div。