---
layout: post
title: Angular Grid - Paging Style | Syncfusion
description: Angular Grid paging style supports visual customization and template options for the pager UI, page size controls, and styling to match application themes.
platform: grid-sdk
control: Paging 
documentation: ug
domainurl: https://help.syncfusion.com/grid-sdk
---

# Paging Customization in Angular Grid Component

The appearance of the paging elements in the [Angular Data Grid](https://www.syncfusion.com/angular-components/angular-data-grid) component can be customized using CSS. Here are examples for customizing the pager root element, pager container element, pager navigation elements, pager page numeric link elements, and the pager current page numeric element.

## Customize the Grid pager root

The `.e-gridpager` class is used to style the pager root element.

```css
.e-grid .e-gridpager {
    font-family: cursive;
    background-color: #deecf9;
}
```

![Grid pager root element](../images/grid-pager-root-element.png)

## Customize the Grid pager container

The `.e-pagercontainer` class is used to style the pager container element.

```css
.e-grid .e-pagercontainer {
    border: 2px solid #00b5ff;
    font-family: cursive;
}
```

![Grid pager container element](../images/grid-pager-container-element.png)

## Customize the Grid pager navigation elements

The classes `.e-prevpagedisabled`, `.e-prevpage`, `.e-nextpage`, `.e-nextpagedisabled`, `.e-lastpagedisabled`, `.e-lastpage`, .`e-firstpage`, and `.e-firstpagedisabled` are used to style the various pager navigation elements.

```css
.e-grid .e-gridpager .e-prevpagedisabled,
.e-grid .e-gridpager .e-prevpage,
.e-grid .e-gridpager .e-nextpage,
.e-grid .e-gridpager .e-nextpagedisabled,
.e-grid .e-gridpager .e-lastpagedisabled,
.e-grid .e-gridpager .e-lastpage,
.e-grid .e-gridpager .e-firstpage,
.e-grid .e-gridpager .e-firstpagedisabled {
    background-color: #deecf9;
}
```

![Grid pager navigation elements](../images/grid-pager-navigation-element.png)

## Customizing the grid pager page numeric link elements

The `.e-numericitem` class is used to style the page numeric link elements.

```css
.e-grid .e-gridpager .e-numericitem {
    background-color: #5290cb;
    color: #ffffff;
    cursor: pointer;
    }
    
    .e-grid .e-gridpager .e-numericitem:hover {
    background-color: white;
    color:  #007bff;
}
```

![Grid pager page numeric link elements](../images/pager-page-numeric-link-elements.png)

## Customizing the grid pager current page numeric element

The `.e-currentitem` class is used to style the current page numeric item.

```css
.e-grid .e-gridpager .e-currentitem {
    background-color: #0078d7;
    color: #fff;
}
```

![Grid pager current page numeric element](../images/grid-pager-current-page-numeric-element.png)
