
Problem with gradient left
I get problem with gradient left to right and border-left, here is the code
CSS:
Code:
.test {
border: 1px solid #696;
padding: 60px 0;
text-align: center; width: 200px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
-webkit-box-shadow: #666 0px 2px 3px;
-moz-box-shadow: #666 0px 2px 3px;
box-shadow: #666 0px 2px 3px;
background: #EEFF99;
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#EEFF99), to(#66EE33));
background: -webkit-linear-gradient(#EEFF99, #66EE33);
background: -moz-linear-gradient(#EEFF99, #66EE33);
background: -ms-linear-gradient(#EEFF99, #66EE33);
background: -o-linear-gradient(#EEFF99, #66EE33);
background: linear-gradient(#EEFF99, #66EE33);
-pie-background: linear-gradient(left, #EEFF99, #66EE33);
behavior: url(PIE.htc);
border-left: 5px solid #E7E7E7;
float: left;
position:relative;
}
HTML:
Code:
<span class="test" style="width: 200px; height: 50px; display: block; float: left;">
Border Left
</span>
It works fine with:
Code:
border-right: 5px solid #E7E7E7;
but not border left