居中放置一个
我正在学习 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用CSS的自动值作为边距?
Use css's auto value for margin?