I have a margin like this ( Fiddle example ):
.menu--margen {
background: #f4f4f4;
border-right: 1px solid #bbbbbb;
border-left: 1px solid #bbbbbb;
border-top: 1px solid #bbbbbb;
border-bottom: none;
margin: 3px auto;
position: relative;
}
.menu--margen:before {
padding: 20px;
border-right: 1px solid #f0f0f0;
border-left: 1px solid #f0f0f0;
border-bottom: 1px solid #f0f0f0;
border-top: none;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
Is there any way to simplify the border css? I've tried:
border: 1px 1px 0px 1px solid #f0f0f0;
But it does not seem to work.