I'm attempting to alter the colors of individual letters within a sentence using html and css. After conducting some research, I came across this method:
Here is the html and css code snippet I used:
.green {
font-size: 20px;
color: #0F3;
text-align: center;
}
<a class=green> H </a>
Everything seems to be working fine, but for some reason, the text won't center even though the css code appears to be correct. Any suggestions on what might be causing this issue?