CSS & Round Corners: Making Accessible Menu Tabs
By Trenton Moss2004-06-27
The solution
CSS, as usual, comes to our rescue. Adjust the text size in your browser now. Go on, do it. Did you see how the menu tabs at the top of the screen increased in size with the text and it all fits perfectly. Today, you're going to learn how to do this.
We start with a simple link:
Home
We'll assign it this CSS code:
a
{
color: #000;
background: #fb0;
text-decoration: none
}
Which gives us:
Needs a bit of work, right?
Tutorial Pages:
» CSS & Round Corners - The problem
» The solution
» Adding the left corner
» And the right corner
» The final touch
