在 WordPress 中将对象居中
我有一个关于 WordPress 的博客,我需要将一个对象居中。最简单的方法是什么?
I have a blog on wordpress and I need to center an object. What is the easiest way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
PHP 不能进行布局,它是用于编程逻辑的。要进行布局,您可以使用 CSS 和 HTML。要使文本居中,您可以使用 jdhartley 上面显示的文本对齐标签。要将表格或 div 等块居中,您可以使用以下 CSS:
宽度可以是任何值,但您必须设置它。它可以是 90% 之类的百分比或像素宽度。
You cannot do layout with PHP, it is for programming logic. To do layout you use CSS and HTML. To center text you can use the text-align tag that jdhartley showed above. To center a block like a table or div you use the following CSS:
The width can be anything, but you do have to set it. It can be a percent like 90% or a pixel width.
实际上,您可以使用 HTML 和 CSS 来做到这一点。 :)
You would actually use HTML and CSS to do that. :)
在 WordPress 中集中您想要的任何内容的最简单且最好的方法绝对是使用:
Definitely easiest and the best way to centre whatever you want in WordPress is to use:
您不使用 PHP 将对象居中。您可以使用 CSS 来定位它们。 阅读本文以获取更多信息。
You don't center objects using PHP. You position them using CSS. Read this for further info.
PHP 只是一种执行数据操作等的脚本语言。您处理该信息并输出 HTML(通常)。您可以做的就是关闭 PHP 并向其中放入一些 HTML,如下所示:
或者您可以在 PHP 中完成所有操作,如下所示:
PHP is just a scripting language that performs data manipulation and such. You process that information and output HTML (usually.) Something you can do is just close the PHP and drop some HTML into it like this:
alternatively you can do it all in PHP like:
在使用古腾堡块系统的 WordPress 5.0 及更高版本中,您可以使用以下代码来实现居中的块段落:
我已经检查过,代码将在没有
正如您可能已经认识到的,您可以更改
{"align":"center"}
以不同方式对齐段落。In Wordpress version 5.0 and above that use Gutenberg block system you may use the below code to achieve a centered blocked paragraph:
I've checked and the code will work without the
<p class="has-text-align-center"></p>
. In other words. This will work too:As you may recognized already, you can change the
{"align":"center"}
to align your paragraph differently.