如何更改 echo 的字体大小?
How do I change the font size of an echo?
我需要知道如何更改 echo 输出的字体大小。我在代码中已经有了不同的字体颜色,这让像我这样的菜鸟变得更加复杂。回声应该是黑色的,大小应该是 150%。请为它写出完整的代码,如果有人能教我如何完成它,那将真正帮助我。谢谢
<?php
srand (microtime()*10000);
$f_contents = file ("secretnet.txt");
$line = $f_contents[array_rand ($f_contents)];
echo "<font color='black'>$line</font>";
?>
这应该可以解决问题,但就像其他人提到的那样,使用 CSS(最好使用 sheet 风格)会更理想。
<?php
srand (microtime()*10000);
$f_contents = file ("secretnet.txt");
$line = $f_contents[array_rand ($f_contents)];
echo "<div style='font-size:150%; color:#000000'>" . $line . "</div>";
?>
如果您使用的是样式 sheet,它看起来会像这样。如果您需要帮助,我建议您在网站的 CSS 部分发帖。
<?php
srand (microtime()*10000);
$f_contents = file ("secretnet.txt");
$line = $f_contents[array_rand ($f_contents)];
echo "<div class='your_class_name_here'>" . $line . "</div>";
?>
在您的 php 文件中:
<?php
srand (microtime()*10000);
$f_contents = file ("secretnet.txt");
$line = $f_contents[array_rand ($f_contents)];
echo "<div class='awesomeText'>$line</div>";
?>
在您的文件中:style.css 需要作为链接资源包含在您的页面顶部。
.awesomeText {
color: #000;
font-size: 150%;
}
这是一个快速示例:http://jsfiddle.net/qro9r54t/
我需要知道如何更改 echo 输出的字体大小。我在代码中已经有了不同的字体颜色,这让像我这样的菜鸟变得更加复杂。回声应该是黑色的,大小应该是 150%。请为它写出完整的代码,如果有人能教我如何完成它,那将真正帮助我。谢谢
<?php
srand (microtime()*10000);
$f_contents = file ("secretnet.txt");
$line = $f_contents[array_rand ($f_contents)];
echo "<font color='black'>$line</font>";
?>
这应该可以解决问题,但就像其他人提到的那样,使用 CSS(最好使用 sheet 风格)会更理想。
<?php
srand (microtime()*10000);
$f_contents = file ("secretnet.txt");
$line = $f_contents[array_rand ($f_contents)];
echo "<div style='font-size:150%; color:#000000'>" . $line . "</div>";
?>
如果您使用的是样式 sheet,它看起来会像这样。如果您需要帮助,我建议您在网站的 CSS 部分发帖。
<?php
srand (microtime()*10000);
$f_contents = file ("secretnet.txt");
$line = $f_contents[array_rand ($f_contents)];
echo "<div class='your_class_name_here'>" . $line . "</div>";
?>
在您的 php 文件中:
<?php
srand (microtime()*10000);
$f_contents = file ("secretnet.txt");
$line = $f_contents[array_rand ($f_contents)];
echo "<div class='awesomeText'>$line</div>";
?>
在您的文件中:style.css 需要作为链接资源包含在您的页面顶部。
.awesomeText {
color: #000;
font-size: 150%;
}
这是一个快速示例:http://jsfiddle.net/qro9r54t/