Pagination - CSS: Cascading Style Sheets 编辑
This cookbook pattern demonstrates the navigation pattern used to display pagination, where the user can move between pages of content such as search results.
Requirements
The pagination pattern typically displays items in a row. To ensure that the pagination is understandable by people using a screenreader, we mark the items up as a list inside a <nav>
element, and then use CSS to display the layout visually as a row.
Typically, the pagination component will be centered horizontally underneath the content.
Recipe
Choices made
This pattern is laid out using flexbox — one flex container nested inside another. The <nav>
element is designated a flex container in order that we can center the list inside using the justify-content
property.
The list itself also becomes a flex container to lay the items out as a row. To space the items out we will use a margin
on the flex items.
Alternative methods
Once the column-gap
property has implementation in browsers this could be used instead of margins to space out the items.
.pagination {
list-style: none;
margin: 0;
padding: 0;
display: flex;
column-gap: 2px;
}
Accessibility concerns
We want to ensure that a person using a screenreader understands what this navigation does, and where they will go when clicking a link. To help with this we have added aria-label="pagination"
on the <nav>
element.
We have also added some additional content that would be read by a screenreader but is hidden visually, and set the aria-hidden
attribute on the paging arrows.
The "See Also" section at the end of this document has links to related accessibility topics.
Browser compatibility
The various layout methods have different browser support. See the charts below for details on basic support for the properties used.
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Include the compat data for key properties you used, as in the example below which includes align-items.
justify-content
BCD tables only load in the browser
column-gap in Flex layout
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论