Yes it's possible. Feel free to change the classes to suit your needs.
CSS:
body {
position: relative;
}
.options_wrapper {
width: 500px; /* Change to suit your needs */
height: 80px; /* Change to suit your needs */
position: absolute;
top: 0;
right: 0;
}
.options {
width: 100%;
height: 100%;
box-shadow: 1px 0 rgba(0, 0, 0, 0.15);
float: left;
position: relative;
overflow: hidden;
}
.options:before {
width: 100%;
height: 100%;
background: #8A0808;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), inset 1px 0 rgba(255, 255, 255, 1);
content:'';
position: absolute;
top: 0;
left: 0;
transform-origin: top left;
transform: skewX(45deg); /* Change to suit your needs */
}
HTML:
<div class="options_wrapper">
<div class="options"></div>
</div>
Here is a Demo: jsFiddle DEMO