<pre>ul.tabs {
float:left;
list-style:none;
height:32px;
width:100%;
border-radius:8px 0 -50px 0;
margin:0;
padding:0;
}
 
ul.tabs li {
float:left;
height:31px;
line-height:31px;
border:1px solid #E7E7E7;
overflow:hidden;
position:relative;
background:#e0e0e0;
margin:0 5px -1px 0;
padding:0;
}
 
ul.tabs li a {
text-decoration:none;
color:#000;
display:block;
font-size:1.2em;
border:1px solid #fff;
outline:none;
-webkit-border-top-left-radius:8px;
-webkit-border-top-right-radius:8px;
-moz-border-radius-topleft:8px;
-moz-border-radius-topright:8px;
border-top-left-radius:8px;
border-top-right-radius:8px;
padding:0 20px;
}
 
ul.tabs li a:hover {
background:#ccc;
}
 
html ul.tabs li.active,html ul.tabs li.active a:hover {
background:#fff;
border-bottom:1px solid #fff;
}
 
.tabContainer {
 /* margin-left: 10px; */
  margin-bottom: 20px;
  border-top: 1px solid #E7E7E7;
  overflow: hidden;
  clear: both;
  float: left;
  width: 100%;
  background: #fff;
  border-radius: 0px;
  border-top-left-radius: 0;
  padding: 20px 20px 20px 20px;
}
 
.tabContent {
font-size: 12px;
}</pre>