View Single Post
Old 10-19-2011, 11:44 AM   #22
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 31,147
Karma: 60406498
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
Quote:
Originally Posted by cybmole View Post
i'd checked the body tag already
before there was no class on body, just....

</head>

<body>
....
with a CSS definition:
body
{
font-size: medium;
line-height: 1.2em;
margin-top: 1em;
margin-left: 0em;
margin-right: 0em;
margin-bottom: 5.000000pt;
margin-top: 5.000000pt;
font-family: "Charis";
}
NB original CSS has body , not .body
after
<body class="calibre1">

.calibre1 {
display: block;
font-family: "Times New Roman", Times, serif;
font-size: 1em;
line-height: 1.2em;

padding-left: 0;
padding-right: 0
}

so I'm still not seeing it ( assuming lack of explicit padding definition defaults to zero )
body applies to any Body tag
.body only applies to something with the class="body"
Both are valid
Both can do the same
the second way just allows finer application control
theducks is offline   Reply With Quote