http://getbootstrap.com/examples/justified-nav/

ลองดัดแปลง CSS ดูนะครับ อาจจะทำแค่เพียง เพิ่มขอบให้โค้งมากขึ้นครับ
ในไฟล์ justified-nav.css แก้ไขบรรทัดที่ 24
โค๊ด:
.nav-justified {
background-color: #eee;
border: 1px solid #ccc;
border-radius: 30px; /*<< แก้ไขตรงนี้*/
}
ในไฟล์ justified-nav.css แก้ไขบรรทัดที่ 70
โค๊ด:
.nav-justified > li:first-child > a {
border-left: 0;
border-radius: 30px 0 0 30px; /*<< แก้ไขตรงนี้*/
}
ในไฟล์ justified-nav.css แก้ไขบรรทัดที่ 74
โค๊ด:
.nav-justified > li:last-child > a {
border-right: 0;
border-radius: 0 30px 30px 0; /*<< แก้ไขตรงนี้*/
}
เพียงเท่านี้ ก็จะได้ตามรูปครับ
