Publishing an ebook, and the Kindle validation (in Kindle Previewer 3) fails because the conversion software adds a "class" attribute to the <html>
tag.
The style only sets margins and padding to 0, which surely could be as easily done by redefining the html tag.
a) would it be safe to remove the attribute, and b) was it even necessary in the first place?
(I realise the answer should be very simple to find, but searching Google for the terms html, class, tag etc is only ever going to give me generic pages on writing html or CSS :(
<html xmlns="http://www.w3.org/1999/xhtml" class="calibre">
where .calibre { margin:0; padding:0;}
I would prefer <html xmlns="http://www.w3.org/1999/xhtml">
where html { margin:0; padding:0;}