I was messing around in adobe photoshop today designing a new layout for one of our online web applications. For most of my links I had increased the spacing between the letters of the word link. It gives it a clean look. Is there any way to do this with css?what about:
letter-spacing: 3px;Originally posted by olaf
what about:
letter-spacing: 3px;
awsome....thank you!!!You might want to use a relative value for the spacing so that the proportions stay the same regardless of the font size selected by the user to view the page:
letter-spacing: 0.2em;
letter-spacing: 3px;Originally posted by olaf
what about:
letter-spacing: 3px;
awsome....thank you!!!You might want to use a relative value for the spacing so that the proportions stay the same regardless of the font size selected by the user to view the page:
letter-spacing: 0.2em;