I'm having some trouble isolating where, exactly, a p element's margin is set in the various css files our project uses. A margin rule does not appear in the css list of the element inspector in developer tools (F12) of either IE or Chrome (although Chrome does of course include a chart at the bottom of the css rules list telling me that 18px of top and bottom margin is being applied from SOMEwhere).
I have just used 'Grep' to search all the files in the project for the strings: "margin: 18px", "margin-top: 18px", "margin:18px" and "margin-top:18px". There were no matches.
My question is - what OTHER way is there to set a margin? Can it be set as a by-product of some other property? A stupid suggestion, I know, but I'm not sure what else to think.
And I have checked and re-checked the css list in the element inspector and a margin rule is not displayed - even though Chrome tells me, in that chart only, that margin is set somehow.
Any new knowledge, well appreciated, thanks.
EDIT
Just to be clear - when I talk about checking the 'css list of the element inspector in the developer tools', I mean I have checked the element in the F12 developer tools in both IE and Chrome.
And sorry to be evasive, but the project is much too large to demonstrate in a js fiddle.