gpt4 book ai didi

html -
  • 列表项中的两个超链接
  • 转载 作者:行者123 更新时间:2023-11-28 18:48:55 25 4
    gpt4 key购买 nike

    如何在 li 项中并排插入两个超链接?

    在下面的 html 代码中,我需要将“登录”和“注册”链接并排放置,并用“|”分隔。以下代码需要进行哪些修改才能完成任务。

    谢谢。

    html文件:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"></html>
    <html>
    <head>
    <link href="styledel.css" rel="stylesheet" type="text/css" />
    </head>

    <body>
    <div id="navcontainer">
    <ul id="navlist">
    <li><a href="index.php">Home</a></li>
    <li><a href="index.php">The Tool </a>
    <ul id="subnavlist">
    <li><a href="subtitle1.php" target = "_blank">Secondary Link</a></li>
    </ul>
    </li>
    <li><a href="tutorials.php">Tutorials &AMP; FAQs</a></li>
    <li><a href="login.php" target="_blank">Login</a> | <a href="user_add.php" target="_blank">Register</a></li>
    </ul>
    </div>

    </body>
    </html>

    CSS文件:

    #navcontainer
    {
    border-right: 1px solid #000000;
    padding: 0px; /* menu look*/
    font-family: 'Courier New',Courier,monospace;
    background-color: #d4cfcf;
    }

    #navcontainer ul
    {
    list-style: none;
    margin: 0px;
    padding: 0px;
    border: none;
    }

    #navcontainer li
    {

    border-bottom: 1px solid #90bade; /*separator*/
    margin: 0;
    }

    #navcontainer li a /*menu */
    {
    display: block;
    padding: 5px .3em 5px .3em;
    border-left: .3em solid #1958b7;
    border-right: .3em solid #508fc4;
    color: #004963;
    text-decoration: none;
    }

    #navcontainer li a:hover /*behavior on hover */
    {
    background-color: #ffffff;
    color: #ad0000;
    }

    #navcontainer li li /*sub menu*/
    {
    border-top: 1px solid #90bade;
    border-bottom: 0;
    margin: 0;
    font-family: 'Courier New',Courier,monospace;
    font-size: 13px;
    }

    # navcontainer li li a /* sub menu */
    {
    padding: 4px 4px 4px 15px;
    color: #5b6f7b /* light slate color: #00788a color of text */
    }
    /* navigation menu end */

    非常感谢。

    最佳答案

    UAs 现在的代码,链接应该是并排的。如果他们没有,那是因为他们没有足够的空间。这可能是因为您设置的宽度太小,或者边距和边距减少了可用空间。

    如果你想让列表项在一行中,你可以在它们上面使用display:inline

    #nav li{display:inline}
    ul{list-style:none;} /* because you don't want a list with inline items to have bullets. */

    关于html - <li> 列表项中的两个超链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9880303/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com