How do I do this? Right now I am doing {text-align: center;}, and it doesn't work. I also tried {align: center;}, but that won't work either. Can anyone help?
Printable View
How do I do this? Right now I am doing {text-align: center;}, and it doesn't work. I also tried {align: center;}, but that won't work either. Can anyone help?
it's not much of a problem if you use Dreamweaver.
try this...tell me if it works..
.center {text-align: center}
good luck
I finally got it, it turns out I have to use divs instead of spans.
do you know what the difference is, between span and div??
<span> is usually used inline and does not have an HTML alignment attribute where the <div> tag does. In HTML you could have <div ALIGN = "center">. This cannot be done with the <span> tag and since no attribute exists in HTML for it you cannot set it in a style.