Thread
:
The 2014 Annual Reading Challenge Discussion Thread!
View Single Post
05-25-2014, 11:05 AM
#
534
Katsunami
Grand Sorcerer
Posts: 6,111
Karma: 34000001
Join Date: Mar 2008
Device: KPW1, KA1
Some OT information about headings:
Spoiler
:
Headings can be done using the <h1>, <h2> tags, and so on.
Use <h1 id="unique_id">...</h1> to create unique headings.
Use <h1 class="chapter">...</h1> to create a heading class "chapter". (You can have more than one in a class, as opposed to an id.)
You can mark them up like this, in the stylesheet:
h1 {
(every and all h1 headings without exception)
}
h1 #unique_id {
(for one heading, with the unique_id)
}
h1.chapter {
(for all h1 headings denoted as chapter headings)
}
PS: A heading can have both a class *and* an id if need be.
Katsunami
View Public Profile
Find More Posts by Katsunami
Track Posts by Katsunami via RSS