我有一个获取XML数据的PHP文件,但显示的字体太小。我发现我可以增加它,但只有7号。有没有办法让90pt。而不是字体?
这是我所拥有的只有7号尺寸:
<font face="helvetica, arial" color="white" size="7">
<?php
$mydata = simplexml_load_file('http://192.168.xx.xxx:yyyy/data.xml');
echo '<p align="right">'.round($mydata->device[14]->value).'</p>';
?>
</font>
答案 0 :(得分:1)
尺寸= “90pt”
阅读级联样式表以供参考。
答案 1 :(得分:0)
我找到了。我需要在段落标记中添加以下内容:
style="font-size: 90pt;"