居中放置一个

发布于 2024-12-12 07:31:10 字数 424 浏览 0 评论 0原文

我正在学习 php 和网页设计,并且正在开发我的第一个网站。事情大部分进展顺利,但我遇到了一些困难,我想知道你们中的一个人是否可以帮助我。

我使用标头模板 php 作为网站所有页面上的标头 (header_template.php)。当我尝试将此标头模板包含在我的主页(index.php)中时,我将 include_once 标记插入标头 .html 标记中,如下所示:

<header>
<?php include_once(header_template.php)?>
</header>

这工作正常,只是我无法使标头在页面上居中。在 header_template.php 中,标题本身居中。我尝试将标题包装在 divalign =“center”标签中,但这对我不起作用。

有什么建议吗?

I am learning php and web design and I'm working on my first site. Things are mostly going well however I've hit a bit of a wall I'm wondering if one of you might be able to help me out with.

I am using a header template php as my header on all pages of a site (header_template.php). When I try and include this header template in my homepage (index.php) I am inserting the include_once tag into the header .html tag like:

<header>
<?php include_once(header_template.php)?>
</header>

This is working fine except I can't get the header centred on the page. In header_template.php, the header it self is centred. I've tried wrapping the header in a div align = "centre" tag but that's not working for me.

Any tips?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

站稳脚跟 2024-12-19 07:31:10

使用CSS的自动值作为边距?

<div style="margin:auto">Centered stuff</div>

Use css's auto value for margin?

<div style="margin:auto">Centered stuff</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文