How to inspect element
I'm using Mui. I have an input that gets an orange border when I click on it, I want to inspect the CSS but when I go to the dev tools the orange border disappears. How can I inspect it?
I've tried to force the element state on the dev tools, with :active, :focus, etc. None seems to trigger that.
3 Replies
you should just be able to re-click the element once it's focused in the dom inspector
in the dev tools --> css tab, you will find :hov, click that, a section will expand, in that you will find all the element state
oh, turns out i just had to re-click like you said.
thanks!