LostGirl
09-30-2005, 11:25 PM
I have this regular black text and I want to make it bold...but I have to do it within a style sheet..so how would I make that happen?
|
View Full Version : I just want to make regular black text bold...but I have to do it using a style sheet LostGirl 09-30-2005, 11:25 PM I have this regular black text and I want to make it bold...but I have to do it within a style sheet..so how would I make that happen? dolce shanti 09-30-2005, 11:27 PM Try this in your stylesheet: body { font-weight:bold; } God bless! mzhao 10-01-2005, 04:57 AM If you don't want your entire page bold (as singingshanti's example makes it), you should enclose the text within <span> tags with class="bold" or something like that. Then, in your stylesheet: .bold { font-weight: bold; } :) |