Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to see the styles applied during hover of an element in ie

Tags:

css

Is there any way to view the styles applied during hovering of an element in Internet Explorer? Chrome and Firefox provide this in styles tab as we can see in console bar.

I want to know whether the same thing can be viewed in Internet Explorer. If so how?

like image 522
user2594152 Avatar asked Feb 15 '23 20:02

user2594152


1 Answers

Once you've pressed F12 and selected the element in question, you will be shown the CSS styles on the right - this does not however update when you hover over the element like in FireBug - nor can you set it's state as ':hover'. What you can do, is once the element is selected, ensure the focus is on the developer bar and hover over the element on the page - while hovered over it, press F5 - if you now reselect that element, the styles on the right hand side will show you the :hover styles ("Trace Styles" will also update)

like image 170
MDEV Avatar answered Feb 27 '23 09:02

MDEV