---
layout: post
title: Angular Grid - Editing Style | Syncfusion
description: Angular Grid editing style supports customizing editor appearance and adjusting layouts to enhance the overall edit mode experience.
platform: grid-sdk
control: Editing 
documentation: ug
domainurl: https://help.syncfusion.com/grid-sdk
---

# Editing Customization in Angular Grid Component

The appearance of editing-related elements in the [Angular Data Grid](https://www.syncfusion.com/angular-components/angular-data-grid) component can be customized using CSS. Below are examples for customizing various editing-related elements.

## Customizing the edited and added row element

The `.e-editedrow` and `.e-addedrow` classes are used to style edited and added row table elements.

```css
.e-grid .e-editedrow table, .e-grid .e-addedrow table {
    background-color: #62b2eb;
}
```

![Customizing the added row element](../images/edited-added-row-element.png)
![Customizing the edited row element](../images/edited-added-row-element-2.png)

## Customizing the edited row input element

The `.e-gridform` and `.e-input` classes are used to style edited form row input element.

```css
.e-grid .e-gridform .e-rowcell .e-input-group .e-input.e-field {
    font-family: cursive;
    color:rgb(214, 33, 123)
}
```

![Customizing the edited and added row element](../images/edited-row-input-element.png)

## Customizing the edit dialog header element

The `.e-edit-dialog` and `.e-dlg-header-content` classes are used to style the dialog header element.

```css
.e-edit-dialog .e-dlg-header-content {
    background-color: #deecf9;
}
```

![Customizing the edit dialog header element](../images/edit-dialog-header-element.png)

## Customizing the edited row input element in dialog edit mode

The `.e-gridform` and `.e-float-input` classes are used to customize the input elements within the edit dialog.

```css
.e-gridform .e-rowcell .e-float-input .e-field {
    font-family: cursive;
}
```

![Customizing the edited row input element in dialog](../images/edited-row-input-element-in-dialog.png)

## Customizing the command column buttons

The  `.e-edit`, `.e-delete`, `.e-update`, and `.e-cancel-icon`  classes are used to style the respective command column buttons in the grid.

```css

.e-grid .e-delete::before ,.e-grid .e-cancel-icon::before{
    color: #f51717;
}
.e-grid .e-edit::before, .e-grid .e-update::before {
    color: #077005;
}
```

![Customize command column button](../images/commandbutton-1.png)
![Customize command column button](../images/commandbutton-2.png)
