I am trying to style disabled state for div I have code
<div disabled> Welcome </div>
<style>
div:disabled{
background-color:#f1f1f1;
}
</style>
I don't have any class or ID present on the element. It is system generated. I want make the background color light gray.