How would I remove the border from an iframe embedded in my web app? An example of the iframe is:
Br
I had an issue with bottom white border and i could not fix it with border, margin & padding rules ... So add display:block; because iframe is an inline element.
display:block;
This takes whitespace in your HTML into account.