我的选项卡菜单退出页面宽度

发布于 2024-12-07 09:28:04 字数 744 浏览 0 评论 0原文

因此,我正在编辑 CSS,选项卡菜单有一个空白:nowrap 属性,这意味着它不会重叠,但最终会退出页面。即使使用 !important 和 heirarchy CSS,设置选项卡菜单本身的宽度也不起作用。

看起来像这样

https://i.sstatic.net/zbmhg.jpg

当我使用空格时: pre,或任何其他它们最终重叠的部分。

这是代码:

html > body > div#header > div#header-bottom-left > ul.tabmenu {
position: absolute;
top: 75px;
left: 700px;
width: 100px !important;
}

#header #header-bottom-left .tabmenu li {
font-family: "Courier New", Courier, monospace !important;
text-transform: uppercase;
letter-spacing: 2px;
font-variant: small-caps;
font-size: 11px;
background: url(%%buttons%%) repeat-x;
border: 1px solid black;
padding: 5px;
margin-right: 16px;
}

So I'm editting the CSS and the tab menu has a whitespace: nowrap property, which means it doesn't overlap but it ends up exiting the page. Setting the width of the tab menu itself does nothing even with !important and heirarchy CSS.

Looks like this

https://i.sstatic.net/zbmhg.jpg

When I do whitespace: pre, or any of the others they end up overlapping.

Here's the code:

html > body > div#header > div#header-bottom-left > ul.tabmenu {
position: absolute;
top: 75px;
left: 700px;
width: 100px !important;
}

#header #header-bottom-left .tabmenu li {
font-family: "Courier New", Courier, monospace !important;
text-transform: uppercase;
letter-spacing: 2px;
font-variant: small-caps;
font-size: 11px;
background: url(%%buttons%%) repeat-x;
border: 1px solid black;
padding: 5px;
margin-right: 16px;
}

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

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

发布评论

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

评论(1

帅的被狗咬 2024-12-14 09:28:04

删除

li {
    margin-right: 16px;
}

您也可以尝试这个

ul,li {
   border:0px;
   padding:0px;
}

Remove

li {
    margin-right: 16px;
}

You may try this too

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