Unbelievable HTML bug
I receive html from customer:
``` <p class=“buttonXYZ”><a href=“”>cancel</a></p> <p class=“buttonXYZ”><a href=“”>OK</a></p> ```
And result is two horizontal button with a small margin. I do almost same work: ``` <p class=“buttonXYZ”><a href=“”>cancel</a></p><p class=“buttonXYZ”><a href=“”>OK</a></p> ```
But two button not have margin. So I inspect customer element, there are NOT any margin or padding, but it still have space between two button. After half day i swim in this issue, i found the problem is: If you write <p> <p> (have blank space), two button have space, if you write <p><p>, two button not have space.













