View Single Post
Old 06-14-2020, 04:06 PM   #63
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,312
Karma: 20171571
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
For Sarmat89 to complain that the default <h?> styling is not to their liking and requires too complex CSS to make it look right, while ignoring the fact that the same CSS would be required for a <div> or <p> is, well, rather ludicrous.

Methinks Sarmat89 is arguing just for the sake of argument, rather than looking at the issue from a logical standpoint. If that is not the case, then Sarmat89 is woefully under-educated about the purposes and uses of CSS. I can't see anyone with a basic knowledge of CSS thinking that this is too complex:

Spoiler:
Code:
body {font-size:100%; margin:0; padding:0; font-weight:normal}
p    {text-indent:1.2em; margin:0; line-height:1}

/* Headers */
h1, h2, h3 {
   display:block; 
   text-align:center; 
   text-indent:0; 
   margin:1em 0; 
   page-break-after:avoid; 
   font-style:normal; 
   font-weight:bold; 
   font-family:serif}

h1 {font-size:1.7em}
h2 {font-size:1.4em}
h3 {font-size:1.4em; font-variant:small-caps}

div {
   margin:2em;
   text-indent:0}
Turtle91 is offline   Reply With Quote