1
vote
Html elements positioned as relative, then moved -15px still take up same physical space
Instead of nudging the <li>s with 'position: relative', you could apply this to each tab (except for the first tab):
margin-left: -15px;
…
1
vote
Stop text wrapping in lists
Using list-style-position:outside; would be more doable if you were using an unordered list, which would always take the same amount of space for the marker. Since you are using an ord …
