I have:
html body nav figure { /* just to clear specificity doubts */
margin: 0;
padding: 0;
bottom: 0;
-moz-box-sizing: border-box;
box-sizing: border-box;
background-color: yellow;
}
I inspect element in chrome, and my rules are applied, but also the following from the user agent stylesheet:
figure {
display: block;
-webkit-margin-before: 1em;
-webkit-margin-after: 1em;
-webkit-margin-start: 40px;
-webkit-margin-end: 40px;
}
I thought these should be overridden... my rules are not overridden either (not crossed out)
How should I override them?