如何使导航文本不重叠在第二行

发布于 2024-11-05 05:19:36 字数 3282 浏览 0 评论 0原文

我正在开发这个页面:

http://128.48.204.195:3000

由于某种原因,菜单项具有像“SPRQL Endpoint”这样的两个单词的第二个单词在第二行重叠。

如何使第二个单词保持在同一行?这是在 Firefox 中,这是我的导航 cs:

.menusystem 

{

    position: absolute;

    font-size: 1em;

}



.menusystem ul, .menusyystem li 

{

    margin: 0;

    padding: 0;

}

.menusystem li {

    list-style: none outside none;

}



.menusystem ul {

    list-style: none;

    -moz-border-radius: 14px;

    -webkit-border-radius: 14px;

}



.menusystem ul li {

    position: relative;

    -moz-box-shadow: 2px 2px 4px rgba(0,0,0,0.4);

    -webkit-box-shadow: 2px 2px 4px rgba(0,0,0,0.4);

    -moz-border-radius: 14px;

    -webkit-border-radius: 14px;

}



.menusystem ul li ul {

    display: none;

    position: absolute;

    top: 1.6em;

    right: 0;

    width: 10em;



}



.menusystem li a {

    display: block;

    padding: 5px 10px;

     /* dark blue */

    border: 1px solid #2e6ea4;

    text-decoration: none;

}



.menusystem ul li.main_menu_li {

    float:right;

    width: 10em;

    margin-right:0.2em;

    text-align: center;

}



/* IE-Win (Holly hack) reads the list item line breaks, so lets hide those \*/

* html ul li { float: left; }

* html ul li a { height: 1%; }





.menusystem li:hover ul, .menusystem li.mouseHover ul { 

    display: block;

}



.menusystem li ul.child_menu_ul li a{

    /*

    color: #fff;

    */

    color: #fff;

    /* light blue */

    background: #7ba9c9;



        font-size: 80%;

    text-shadow: none;

    -moz-border-radius: 0px;

    -webkit-border-radius: 0px;

    border-bottom: 1px solid #2e6ea4;

    border-top: 0px;

}

.menusystem li ul.child_menu_ul li.first a{

    -moz-border-radius-topleft: 14px;

    -moz-border-radius-topright: 14px;

    -webkit-border-top-left-radius: 14px;

    -webkit-border-top-right-radius: 14px;

    -moz-border-radius-bottomleft: 0;

    -moz-border-radius-bottomright: 0;

    -webkit-border-bottom-left-radius: 0;

    -webkit-border-bottom-right-radius: 0;

    border-top: 1px solid #2e6ea4;

}

.menusystem li ul.child_menu_ul li.last a{

    -moz-border-radius-topleft: 0px;

    -moz-border-radius-topright: 0px;

    -webkit-border-top-left-radius: 0px;

    -webkit-border-top-right-radius: 0px;

        -moz-border-radius-bottomleft: 14px;

    -moz-border-radius-bottomright: 14px;

    -webkit-border-bottom-left-radius: 14px;

    -webkit-border-bottom-right-radius: 14px;

}



.menusystem li ul.child_menu_ul li.only a {

    -moz-border-radius: 14px;

    -webkit-border-radius: 14px;



}



.menusystem li ul.child_menu_ul li a:hover {

    color: #ff0;

    background: #2e6ea4;

}



.menusystem li.main_menu_li a{

    color: #fff;



    background: -moz-linear-gradient(100% 100% 90deg, #668eb8, #2e6ea4 );

    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#668eb8), to(#2e6ea4));

        background-color: #2e6ea4;





    text-shadow: 1px 1px 1px rgba(0,0,0,0.9);

    -moz-text-shadow: 1px 1px 1px rgba(0,0,0,0.9);

    -webkit-text-shadow: 1px 1px 1px rgba(0,0,0,0.9);

    -moz-border-radius: 14px;

    -webkit-border-radius: 14px;

}



.menusystem li.main_menu_li a:hover {

    color: #ff0;

}

I have this page I am developing:

http://128.48.204.195:3000

For some reason the menu item that has two words like "SPRQL Endpoint" has the second word overlapping on the second line.

How can I make the second word stay on the same line? This is in Firefox and here is my cs for the navigation:

.menusystem 

{

    position: absolute;

    font-size: 1em;

}



.menusystem ul, .menusyystem li 

{

    margin: 0;

    padding: 0;

}

.menusystem li {

    list-style: none outside none;

}



.menusystem ul {

    list-style: none;

    -moz-border-radius: 14px;

    -webkit-border-radius: 14px;

}



.menusystem ul li {

    position: relative;

    -moz-box-shadow: 2px 2px 4px rgba(0,0,0,0.4);

    -webkit-box-shadow: 2px 2px 4px rgba(0,0,0,0.4);

    -moz-border-radius: 14px;

    -webkit-border-radius: 14px;

}



.menusystem ul li ul {

    display: none;

    position: absolute;

    top: 1.6em;

    right: 0;

    width: 10em;



}



.menusystem li a {

    display: block;

    padding: 5px 10px;

     /* dark blue */

    border: 1px solid #2e6ea4;

    text-decoration: none;

}



.menusystem ul li.main_menu_li {

    float:right;

    width: 10em;

    margin-right:0.2em;

    text-align: center;

}



/* IE-Win (Holly hack) reads the list item line breaks, so lets hide those \*/

* html ul li { float: left; }

* html ul li a { height: 1%; }





.menusystem li:hover ul, .menusystem li.mouseHover ul { 

    display: block;

}



.menusystem li ul.child_menu_ul li a{

    /*

    color: #fff;

    */

    color: #fff;

    /* light blue */

    background: #7ba9c9;



        font-size: 80%;

    text-shadow: none;

    -moz-border-radius: 0px;

    -webkit-border-radius: 0px;

    border-bottom: 1px solid #2e6ea4;

    border-top: 0px;

}

.menusystem li ul.child_menu_ul li.first a{

    -moz-border-radius-topleft: 14px;

    -moz-border-radius-topright: 14px;

    -webkit-border-top-left-radius: 14px;

    -webkit-border-top-right-radius: 14px;

    -moz-border-radius-bottomleft: 0;

    -moz-border-radius-bottomright: 0;

    -webkit-border-bottom-left-radius: 0;

    -webkit-border-bottom-right-radius: 0;

    border-top: 1px solid #2e6ea4;

}

.menusystem li ul.child_menu_ul li.last a{

    -moz-border-radius-topleft: 0px;

    -moz-border-radius-topright: 0px;

    -webkit-border-top-left-radius: 0px;

    -webkit-border-top-right-radius: 0px;

        -moz-border-radius-bottomleft: 14px;

    -moz-border-radius-bottomright: 14px;

    -webkit-border-bottom-left-radius: 14px;

    -webkit-border-bottom-right-radius: 14px;

}



.menusystem li ul.child_menu_ul li.only a {

    -moz-border-radius: 14px;

    -webkit-border-radius: 14px;



}



.menusystem li ul.child_menu_ul li a:hover {

    color: #ff0;

    background: #2e6ea4;

}



.menusystem li.main_menu_li a{

    color: #fff;



    background: -moz-linear-gradient(100% 100% 90deg, #668eb8, #2e6ea4 );

    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#668eb8), to(#2e6ea4));

        background-color: #2e6ea4;





    text-shadow: 1px 1px 1px rgba(0,0,0,0.9);

    -moz-text-shadow: 1px 1px 1px rgba(0,0,0,0.9);

    -webkit-text-shadow: 1px 1px 1px rgba(0,0,0,0.9);

    -moz-border-radius: 14px;

    -webkit-border-radius: 14px;

}



.menusystem li.main_menu_li a:hover {

    color: #ff0;

}

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

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

发布评论

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

评论(3

吐个泡泡 2024-11-12 05:19:36

我的猜测是以下代码导致了问题(

.menusystem ul li.main_menu_li {
    float:right;
    width: 10em;
    margin-right:0.2em;
    text-align: center;
}

沟渠宽度)

my guess is the following code is causing the problem

.menusystem ul li.main_menu_li {
    float:right;
    width: 10em;
    margin-right:0.2em;
    text-align: center;
}

ditch the width

烏雲後面有陽光 2024-11-12 05:19:36

添加:空白:nowrap;

.menusystem ul li.main_menu_li {
    float: right;
    margin-right: 0.2em;
    text-align: center;
    white-space: nowrap;
    width: 10em;
}

Add: white-space:nowrap;

.menusystem ul li.main_menu_li {
    float: right;
    margin-right: 0.2em;
    text-align: center;
    white-space: nowrap;
    width: 10em;
}
笨笨の傻瓜 2024-11-12 05:19:36

white-space: nowrap; 添加到 .menusystem ul li.main_menu_li 的 CSS 声明中。另外,您可能想稍微增加元素的宽度。也许从 10em 到 12em 或 14em。

Add white-space: nowrap; to the css declaration for .menusystem ul li.main_menu_li. Also, you might want to increase the width of the element a bit. Maybe from 10em to 12em or 14em.

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