我需要知道如何更改回声输出的字体大小。我已经在代码中使用了不同的字体颜色,这使得像我这样的菜鸟变得更加复杂。回声应为黑色,大小为150%。请写出它的完整代码,如果有人能教我怎么做就能真正帮助我。感谢。
<?php
srand (microtime()*10000);
$f_contents = file ("secretnet.txt");
$line = $f_contents[array_rand ($f_contents)];
echo "<font color='black'>$line</font>";
?>
答案 0 :(得分:0)
在你的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/