我需要将菜单栏居中。我想我想到的一切。
这是MENU BAR的源文件;
http://insicdesigns.com/downloads/fancy-menu.zip
我尝试以下代码
<align=center>
但它不起作用。
我会将所有内容集中在页面的中心。现在它在左边。
我该怎么做到这一点?我是初学者,想要帮助。
答案 0 :(得分:0)
使用css text-align属性: 文本对齐:中心 看看它是如何工作的: http://www.w3schools.com/cssref/pr_text_text-align.asp 希望它可以帮助你
答案 1 :(得分:0)
您的标记看起来很基本但是html中的id标记
<h1 id="header">
和一些css
#header {
text-aligh: center;
}
应该这样做。或者您可以尝试使用
margin: auto 0;
在div上,即文本的宽度。