This is my first attempt at using css.
I have 6 heading styles in my css.
I find that the <hn> element causes a CR.
As I wish to use a separate style for say an item and one for the contents like
<h1>Drawer 1 : <h2>Loose files
<h1>Drawer 2 : <h2>Accounting etc
These items are got from a database and I write the code in VFP to write out the HTML.
How can I get 2 styles on one line?
I use 3 css files varying in initial font viz size 10pt 12pt and 14pt
The one chosen in the App is copied as mystyle.css
my css file is
body {font-family: "Comic Sans MS";font-size:10pt;}
h1,h2,h4,h5,h6,h7,c1,c2,c3,c4,c5,c6,c7,k1 { font-family: "Comic Sans MS" }
c1 { font-size:150%; font-weight:bold; text-align:left }
c2 { font-size:100%; font-weight:normal; text-align:left }
c3 { font-size:70%; font-weight:normal; text-align:left }
c4 { font-size:50%; font-weight:normal; text-align:left }
c5 { font-size:70%; font-weight:normal; text-align:left }
h1 { font-size:110%; font-weight:bold; text-align:left }
h2 { font-size:80%; font-weight:bold; text-align:left; text-decoration:underline }
h3 { font-size:77%; font-weight:bold; text-decoration:underline }
h4 { font-size:80%; font-weight:normal font-variant: small-caps }
h5 { font-size:77%; font-weight:normal}
h6 { font-size:60%; font-weight:normal }
h7 { font-size:50%; font-weight:bold }
Regards
Bryan
I have 6 heading styles in my css.
I find that the <hn> element causes a CR.
As I wish to use a separate style for say an item and one for the contents like
<h1>Drawer 1 : <h2>Loose files
<h1>Drawer 2 : <h2>Accounting etc
These items are got from a database and I write the code in VFP to write out the HTML.
How can I get 2 styles on one line?
I use 3 css files varying in initial font viz size 10pt 12pt and 14pt
The one chosen in the App is copied as mystyle.css
my css file is
body {font-family: "Comic Sans MS";font-size:10pt;}
h1,h2,h4,h5,h6,h7,c1,c2,c3,c4,c5,c6,c7,k1 { font-family: "Comic Sans MS" }
c1 { font-size:150%; font-weight:bold; text-align:left }
c2 { font-size:100%; font-weight:normal; text-align:left }
c3 { font-size:70%; font-weight:normal; text-align:left }
c4 { font-size:50%; font-weight:normal; text-align:left }
c5 { font-size:70%; font-weight:normal; text-align:left }
h1 { font-size:110%; font-weight:bold; text-align:left }
h2 { font-size:80%; font-weight:bold; text-align:left; text-decoration:underline }
h3 { font-size:77%; font-weight:bold; text-decoration:underline }
h4 { font-size:80%; font-weight:normal font-variant: small-caps }
h5 { font-size:77%; font-weight:normal}
h6 { font-size:60%; font-weight:normal }
h7 { font-size:50%; font-weight:bold }
Regards
Bryan