html - Rounding corners nav bar -


hi im having troubles rounding corners on navigation bar, when write - border-radius: 15px; round corners of <a> want round of <li> margins of whole toolbar.

here fiddle.

thanks

edit

only want home , contact rounded

this works:

ul#list-nav li {    border:2px solid blue;    float:left;    overflow:hidden; }  li.first{    border-top-left-radius:15px;    border-bottom-left-radius:15px; } li.last{     border-top-right-radius:15px;    border-bottom-right-radius:15px; } 

here updated fiddle.


Comments

Popular posts from this blog

jquery - Invalid Assignment Left-Hand Side -

java - Play! framework 2.0: How to display multiple image? -

asp.net mvc - Implementing normal user/pass, Twitter & Facebook auth -