将链接放置在 div 栏的中间

发布于 2024-11-26 12:37:55 字数 474 浏览 2 评论 0原文

我喜欢使用 css 执行以下操作:

在距离页面顶部 100pt 的地方放置一个 div 栏。 div 栏的厚度约为 100pt。然后在 div 栏的“中间”我喜欢有菜单选项。到目前为止,我得到了以下内容,但是菜单项(链接)未居中:

.top_header {
    background-color:#3B5998; 
    height:70px; 
    margin-left:0px; 
    margin-right:0px; 
    top:60px; 
    position:relative 
}

.top_header a, .top_header a:visited, .top_header a:hover, .top_header a:active, .top_header a:focus {
    color:white; 
    font-size:x-large; 
    font-family:Arial
}

I like to do the following using css:

Have a div bar 100pt from top of the page. The div bar will be about 100pt thick. Then at the "middle" of the div bar I like to have the menu options. I got the following so far, however the menu items (links) are not centred:

.top_header {
    background-color:#3B5998; 
    height:70px; 
    margin-left:0px; 
    margin-right:0px; 
    top:60px; 
    position:relative 
}

.top_header a, .top_header a:visited, .top_header a:hover, .top_header a:active, .top_header a:focus {
    color:white; 
    font-size:x-large; 
    font-family:Arial
}

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

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

发布评论

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

评论(4

悲念泪 2024-12-03 12:37:55

一种方法是添加 line-height,将其设置为与 div 相同的 height

line-height:70px; 

http://jsfiddle.net/jasongennaro/EXqkT/

这会将其垂直对齐。

然后,如果你想水平居中,你可以添加

text-align:center;

http://jsfiddle.net/jasongennaro/EXqkT /1/

One way to do this is to add line-height, setting it as the same height as the div.

line-height:70px; 

http://jsfiddle.net/jasongennaro/EXqkT/

This aligns it vertically.

Then, if you want to center it horizontally, you can add

text-align:center;

http://jsfiddle.net/jasongennaro/EXqkT/1/

清风疏影 2024-12-03 12:37:55

添加

`text-align:center;'

到.top_header。

Add

`text-align:center;'

to .top_header.

停顿的约定 2024-12-03 12:37:55

添加样式 text-align:center;到 top_header div
http://jsfiddle.net/rajani5022/CpsX2/4/

add style text-align:center; to top_header div
http://jsfiddle.net/rajani5022/CpsX2/4/

回忆躺在深渊里 2024-12-03 12:37:55

margin:auto 添加到 .top_header a

add margin:auto to .top_header a

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