curriculum/challenges/english/blocks/top-the-box-model/64a553ed02815a7d323aab89.md
In the Elements pane, you can see the entire HTML structure of your page. You can click on any of the elements in this pane to select that specific element. Alternatively, you can click the blue-highlighted icon shown below on the left, and hover over any element on the page.
When an element is selected, the Styles tab will show all the currently applied styles, as well as any styles that are being overwritten (indicated by a strikethrough of the text). For example, if you use the inspector to click on the “Your Career in Web Development Starts Here” header on <a href="https://www.theodinproject.com/" target="_blank">The Odin Project homepage</a>, on the right-hand side you’ll see all the styles that are currently affecting the element, as seen below:
When inspecting an element in the Chrome Dev Tools, if a style property is shown with a strikethrough, what does it indicate?
The style property is currently disabled and not applied to the element.
The style property is overridden by a more specific CSS rule.
The style property is deprecated and should not be used.
The style property is experimental and may not be supported by all browsers
2