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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Lines to menu with CSS

Status
Not open for further replies.

ASPVBNerd

Programmer
Nov 23, 2005
83
SE
I am trying to create a menu.
My problem is that I need to create a line with html+css and inside the line should link menu be.
How much I trying it never seems to work out for me.

I would like to create the above like picture as the below with css.
A link so of what I am trying to do will help you understand better what I mean.


Could someone help with me getting started?
 
Thanx, but thats not how I want my menu.
Couldn't find the info that I wanted.
All I want is a line from my picture and to go down and make the line.
 
Could you give me an example?
I really suck at css+html
 
You already know how to do DIV elements - you've several on the page. To give them a border, assuming your DIV has an ID of "myDiv", you would use the following CSS:

Code:
div#myDiv {
   border-top: 1px solid #000000;
   border-left: 1px solid #000000;
   border-right: 1px solid #000000;
}

Dan

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
BillyRayPreachersSon, tank you.
Now the menu is perfect.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top