Dave Stallberg
Dave Stallberg

Reputation: 1603

Navbar is weird?

I'm making this navbar in CSS which you can view at http://jsfiddle.net/JVgzW/

The <a> tag goes directly down the navbar, and I've tried fixing it by doing display:block and stuff like that, but what do I do?

Upvotes: 1

Views: 55

Answers (2)

user1817311
user1817311

Reputation:

Another solution could also be using float: left;in the a section

Upvotes: 0

Ivan Chernykh
Ivan Chernykh

Reputation: 42166

Have a look: http://jsfiddle.net/JVgzW/1/
I've added:

#navbar li{
    display: inline-block;    
}

and text-align: center; to your #navbar

Upvotes: 3

Related Questions