Some readers have default margins or other properties that cannot be changed and that take preference over styles in the book. Try using a selector with a higher priority, such as:
Code:
body p {margin: 0; padding: 0; }
which means "all <p> tags inside a <body> tag". It should apply to all <p> tags, because all should be inside <body>, but it has a higher priority than just "p".