项目符号图像位置

发布于 2024-12-01 13:59:58 字数 184 浏览 3 评论 0原文

我在菜单中定位项目符号时遇到问题。

我使用自定义图像作为项目符号。但项目符号图像与文本底部对齐。因此,当我尝试将 li 文本与 menu_bar div 的中心对齐时,项目符号图像会向上移动。

如何解决这个问题,使项目符号图像与文本保持在中心。

提前致谢

I am having problem in positioning the bullet in menu.

I am using custom image as bullet. But bullet image is aligned with the bottom of the text. So when I am trying to align the li text at the center of the menu_bar div, the bullet image is moving up.

How to fix that so bullet image stay at the center with the text.

Thanks in advance

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

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

发布评论

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

评论(2

一花一树开 2024-12-08 13:59:58

检查 css 垂直对齐属性或将项目符号作为链接的整个背景图像的一部分,而不会看到您想要执行的操作的图像,这是很困难的。您可以发布测试站点的图像或链接吗?

check out css vertical-align property or make the bullet part of the whole background image for your link, without seeing an image of what you're trying to do it's difficult. Could you post an image or link to a test site?

久夏青 2024-12-08 13:59:58

好的,试试这个...

    #menu_bar {
/* make menu_bg.png full width of your link and add the arrow to this image */ 
background:url(menu_bg.png);  
background-repeat:repeat-x; /* remove this */
height:57px; } 

#menu_bar ul { 
margin-left:50px; 
} 

#menu_bar ul li { 
float:left; 
margin-left:10px; 
margin-right:10px; 
list-style-image:url(divider.png); /* remove this */
} 

#menu_bar ul li a { 
color:white; 
text-transform:uppercase; 
font-weight:bold; 
font-size:15px; 
text-decoration:none; 
font-family:Arial, Helvetica, sans-serif; 
line-height:57px; 
display:block; } 

OK try this...

    #menu_bar {
/* make menu_bg.png full width of your link and add the arrow to this image */ 
background:url(menu_bg.png);  
background-repeat:repeat-x; /* remove this */
height:57px; } 

#menu_bar ul { 
margin-left:50px; 
} 

#menu_bar ul li { 
float:left; 
margin-left:10px; 
margin-right:10px; 
list-style-image:url(divider.png); /* remove this */
} 

#menu_bar ul li a { 
color:white; 
text-transform:uppercase; 
font-weight:bold; 
font-size:15px; 
text-decoration:none; 
font-family:Arial, Helvetica, sans-serif; 
line-height:57px; 
display:block; } 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文