我正在尝试制作基于 UL li 的良好 CSS 菜单,但有定位问题

发布于 2024-11-27 07:44:37 字数 84 浏览 1 评论 0原文

我正在尝试制作基于 UL li 的良好 CSS 菜单,但存在定位问题。他们没有得到我想要的位置。他们从我把它们放进去的 div 中出来。如何解决这个问题?

I am trying to make UL li based good CSS menus and having positioning problem. They are not getting positioned as i wanted. They get out of div i put them in. How to fix this problem ?

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

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

发布评论

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

评论(2

花间憩 2024-12-04 07:44:37

我猜您对浏览器的自动边距功能有问题。

使用此功能可以在启动菜单之前重置其边距功能。

* {
    margin : 0;
    padding : 0;
}  

I am guessing that you are having problem with browsers auto margin feature.

Use this to reset their margin feature before starting menus.

* {
    margin : 0;
    padding : 0;
}  
兔姬 2024-12-04 07:44:37

不确定问题是什么,因为您还没有发布 HTML、CSS,甚至没有发布 jsfiddle 的链接...

然而,我确实记得当我还是个新手时,我也遇到过 CSS 菜单的麻烦。

我强烈建议您花时间查看“Son of Suckerfish Dropdowns”:

http: //www.htmldog.com/articles/suckerfish/dropdowns/

我想你会发现它非常有帮助。

Not sure what the issue is as you have not posted your HTML, CSS or even a link to jsfiddle ...

However, I do remember the when I was a newby and I also had troubles with CSS Menus.

I highly recommend you take the time to check out "Son of Suckerfish Dropdowns":

http://www.htmldog.com/articles/suckerfish/dropdowns/

I think you will find it very helpful.

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