① php如何让生成的文字居中
我想你误会了php的功能了,文字居中是样式问题,属于html/css
<body style="text-align:center">
<p><?php echo "asdfasdf"; ?><p>
</body>
② Php里的文字怎么居中的
这是css做的事,不是php做的事;
css水平居中 text-align:center
css垂直居中 height:30px; line-height:30px;
③ php fpdf 怎么设置居中
居中是页面布局的事,和php没有关系
你最好贴点代码,让我们知道你是div布局还是table布局。
2.一般居中有几种方式:
1)直接使用<center>标签。例如<center>剧中</center>
2)css的text-align:center
3)align="center"
4)页面整体居中:
设置body
body{margin:0;padding:0}
设置容器 -- 需要设置容器宽度
.main{width:1000px;margin:auto;padding:auto;}
3.