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 のいずれかを使用できます。