CSS Question
CSS Question
Out of context: Reply #2
- Started
- Last post
- 3 Responses
- beingdevious0
im assuming your using external CSS(sytlesheet) you can use inline CSS, or use classes in the .css file itself. i use classes for just ablout everything. i never really got too keen with inline styling, but i know it tkes precedence over the external styles. classes are like this if you dont know
.className{
background-color:#006699;
font-family:Arial, Tahoma, Verdana;
}refernece it like this:
myText
goodLuck
-AJ