Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

navigation spacing 1

Status
Not open for further replies.

harrymossman

Technical User
Sep 5, 2002
255
US
I want to make a navigation area that looks sort of like this:
Code:
____________________________________________
Home breadcrumbs         Site Map  About us
____________________________________________
Easy enough with tables. But I can't figure out how to do it with CSS. The problem is that the bread crumbs can vary quite a bit in length.

Harry
 
overflow:hidden; will prevent long strings from ruining your layout. MSIE has another option that chops off long strings with ... but I forgot what that is called.

----------
I'm willing to trade custom scripts for... [see profile]
 
Thanks, but it's important info. I don't want it to go into hiding!
 
This will basically do what you wish:
Code:
<html>
 <head>
  <style type=&quot;text/css&quot;>
   #navigation {
 	width: 800px;
	height: 40px;
	margin: 0;
	padding 0;
	list-style: none;
	border-width: 1px 0px 1px 0px;
	border-color: black;
	border-style: solid;
   }
  
   #navigation li {
	width: 100px;
   }

   #navigation li.left {
	float: left;
   }

   #navigation li.right {
	float: right;
   }

   #navigation li.breadcrumbs {
	width: 500px;
   }

  </style>
 </head>
<body>

<ul id=&quot;navigation&quot;>
  <li class=&quot;left&quot;>Home</li>
  <li class=&quot;left breadcrumbs&quot;>Lotsa Lotsa Lotsa Lotsa Lotsa Lotsa Lotsa Lotsa Lotsa Lotsa Lotsa Lotsa Lotsa Breadcrumbs</li>
  <li class=&quot;right&quot;>Site Map</li>
  <li class=&quot;right&quot;>About Us</li>
</div>
</body>
</html>
Hope it helps.
 
Oops, should be closing </ul> at the end not closing </div>. Tiny error.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top