创建水平滚动UL

Create Horizontally Scrollable UL

本文关键字:UL 滚动 水平 创建      更新时间:2023-09-26

我有一个导航栏,它需要一个自动响应的可滚动UL列表。

我的HTML:

<nav class="navigation">
    <ul> 
        <li>Home </li>
        <li>Publications </li>
        <li>Exams </li>
        <li>Courses </li>
        <li>Example Text </li>
        <li>Example Text </li>
        <li>Example Text </li>
        <li>Example Text </li>
        <li>Example Text </li>
    </ul>
</nav>

CSS:

   .navigation{
    background-color: darkblue;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    max-height:50px;
    margin-bottom:10px;
    overflow: hidden;
}
.navigation ul{
    float:right;
    list-style-type: none;
    height: 50px;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
}
.navigation ul li{
    float:left;
    color:#ffffff;
    margin-right:10px;
    text-align: center;
}

我做错了什么?它似乎没有像我想要的那样工作。

感谢您的支持。我找到了答案。还得到了Material.css的一些帮助,这里是精确答案

这就是我想要的。

.navigation{
    background-color: darkblue;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	max-height:50px;
	margin-bottom:10px;
	overflow: hidden;
  }
.navigation ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    height: 48px;
    background-color: #fff;
    margin: 0 auto;
    width: 100%;
    white-space: nowrap;
}
ul {
    padding: 0;
}
ul {
    list-style-type: none;
}
.navigation ul li {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: block;
    float: left;
    text-align: center;
    line-height: 48px;
    height: 48px;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    text-overflow: ellipsis;
    overflow: hidden;
    letter-spacing: .8px;
    width: 15%;
    min-width: 80px;
}
ul li {
    list-style-type: none;
}
li {
    display: list-item;
    text-align: -webkit-match-parent;
}
<nav class="navigation"> 
<ul>
  <li>Test 1</li>
  <li>Test 1</li>
  <li>Test 1</li>
  <li>Test 1</li>
  <li>Test 1</li>
  <li>Test 1</li>
  <li>Test 1</li>
  <li>Test 1</li>
  <li>Test 1</li>
  <li>Test 1</li>
  <li>Test 1</li>
</ul>
</nav>