Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

W3.CSS 分页


« 1 2 3 4 5 6 »

基本分页

如果您有一个包含许多页面的网站,您可能希望使用某种分页。

要创建基本分页,请在条形 (w3-bar) 中使用按钮 (w3-button)。

示例

<div class="w3-bar">
  <a href="#" class="w3-button">1</a>
  <a href="#" class="w3-button">2</a>
  <a href="#" class="w3-button">3</a>
  <a href="#" class="w3-button">4</a>
  <a href="#" class="w3-button">5</a>
</div>

自己尝试 »

要移除按钮之间的空格,请添加 w3-bar-item

示例

<div class="w3-bar">
  <a href="#" class="w3-button">&laquo;</a>
  <a href="#" class="w3-button">1</a>
  <a href="#" class="w3-button">2</a>
  <a href="#" class="w3-button">3</a>
  <a href="#" class="w3-button">4</a>
  <a href="#" class="w3-button">5</a>
  <a href="#" class="w3-button">&raquo;</a>
</div>

自己尝试 »


分页箭头

使用 HTML 实体或图标库中的图标添加分页箭头

« 1 2 3 4 »

示例

<div class="w3-bar">
  <a href="#" class="w3-button">&laquo;</a>
  <a href="#" class="w3-button">1</a>
  <a href="#" class="w3-button">2</a>
  <a href="#" class="w3-button">3</a>
  <a href="#" class="w3-button">4</a>
  <a href="#" class="w3-button">5</a>
  <a href="#" class="w3-button">&raquo;</a>
</div>

自己尝试 »



活动/当前链接

« 1 2 3 4 »

使用其中一个 w3-color 类来指示用户所在的页面

示例

<div class="w3-bar">
  <a href="#" class="w3-button">&laquo;</a>
  <a href="#" class="w3-button w3-green">1</a>
  <a href="#" class="w3-button">2</a>
  <a href="#" class="w3-button">3</a>
  <a href="#" class="w3-button">4</a>
  <a href="#" class="w3-button">&raquo;</a>
</div>

自己尝试 »


悬停颜色

« 1 2 3 4 »

默认情况下,当您将鼠标悬停在分页链接上时,它们会获得灰色背景色。使用任何 w3-hover-color 类来更改悬停颜色

示例

<div class="w3-bar">
  <a href="#" class="w3-button w3-hover-purple">&laquo;</a>
  <a href="#" class="w3-button w3-hover-green">1</a>
  <a href="#" class="w3-button w3-hover-red">2</a>
  <a href="#" class="w3-button w3-hover-blue">3</a>
  <a href="#" class="w3-button w3-hover-black">4</a>
  <a href="#" class="w3-button w3-hover-orange">&raquo;</a>
</div>

自己尝试 »


分页大小

« 1 2 3 4 »
« 1 2 3 4 »

使用 w3-tinyw3-smallw3-largew3-xlargew3-xxlargew3-xxxlarge 来调整分页的大小

示例

<div class="w3-bar w3-xlarge">

自己尝试 »


居中分页

« 1 2 3 4 »

要居中分页,请将 "w3-bar" 元素放在 "w3-center" 元素中

示例

<div class="w3-center">
<div class="w3-bar">
  <a href="#" class="w3-bar-item w3-button">&laquo;</a>
  <a href="#" class="w3-button">1</a>
  <a href="#" class="w3-button">2</a>
  <a href="#" class="w3-button">3</a>
  <a href="#" class="w3-button">4</a>
  <a href="#" class="w3-button">&raquo;</a>
</div>
</div>

自己尝试 »


带边框的分页

« 1 2 3 4 5 »

添加 w3-border 类以创建带边框的分页

示例

<div class="w3-bar w3-border">

自己尝试 »

圆角边框

« 1 2 3 4 5 »

在 w3-border 旁边添加 w3-round 类以创建圆角边框

示例

<div class="w3-bar w3-border w3-round">

自己尝试 »


其他分页示例

w3-bar 类也可以用来创建下一页/上一页按钮


下一页/上一页示例

<div class="w3-bar w3-border w3-round">
  <a href="#" class="w3-button">&#10094; 上一页</a>
  <a href="#" class="w3-button w3-right">下一页 &#10095;</a>
</div>

自己尝试 »

内联菜单示例

<div class="w3-show-inline-block">
<div class="w3-bar w3-light-grey">
  <a href="#" class="w3-bar-item w3-button w3-dark-grey">首页</a>
  <a href="#" class="w3-bar-item w3-button">链接 1</a>
  <a href="#" class="w3-bar-item w3-button">链接 2</a>
  <a href="#" class="w3-bar-item w3-button">链接 3</a>
</div>
</div>

自己尝试 »


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.