Skip to content

Instantly share code, notes, and snippets.

@Bodacious
Created October 7, 2011 14:51
Show Gist options
  • Save Bodacious/1270428 to your computer and use it in GitHub Desktop.
Save Bodacious/1270428 to your computer and use it in GitHub Desktop.
Flexible navigation tabs using CSS
<html>
<head>
<style type="text/css" media="screen">
#navbar {
display: table;
}
#navbar span {
display: table-cell;
text-align: center;
}
</style>
</head>
<body>
<div id="navbar">
<span>These</span> <span>should</span> <span>automatically</span> <span>space</span> <span> out </span>
</div>
</body>
#navbar {
display: table;
}
#navbar span {
display: table-cell;
text-align: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment