境界線を使用して、そのようなことを実現できます。jsfiddleおそらく最良の答えではありませんが、純粋な css を主張する場合の出発点です。
編集:ここでJsFiddle デモを更新しました
マークアップ
<div>
<div class="wrapper inner">
<div class="abc"></div>
<div class="container">I AM A TAB<div>
</div>
<div class="border inner">
<div class="ab"></div>
<div class="bcontainer"><div>
</div>
</div>
</p>
CSS
.inner{position:fixed;}
.border{width:72px;height:52px;z-index:-1;top:0px;}
.wrapper{width:70px;top:1px;left:1px;}
.container {background:rgb(226,226,226);text-align:center;}
.bcontainer{background:black;width:71px;height:41px;}
.abc {
width: 60px;
border-bottom: 10px solid rgb(226,226,226);
border-right: 10px solid transparent;
}
.ab{ width: 61px;
border-bottom: 11px solid black;
border-right: 10px solid transparent;}