---
title: "how to change the color of disabled controls"  
description: "how to change the color of disabled controls"  
author: "Mark Devid"  
published: 2014-08-23  
updated: 2014-08-23  
canonical: https://www.mindstick.com/forum/2109/how-to-change-the-color-of-disabled-controls  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# how to change the color of disabled controls

I wanna to change the [color](https://www.mindstick.com/articles/77/how-to-split-form-background-color-in-c-sharp) of any disabled [control](https://www.mindstick.com/blog/197/asp-dot-net-repeater-control), Ho to do this?

## Replies

### Reply by Sumit Kesarwani

Hi Mark,

Use the following CSS2 selector:

```
input[disabled=disabled] { /* your style */ color: #fff
!important;}
```


---

Original Source: https://www.mindstick.com/forum/2109/how-to-change-the-color-of-disabled-controls

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
