Border image with opacity

Viewed 4473

I have this:

.striped-border {
    border: 8px solid transparent;
    border-image: url(../img/stripes.png) 9 round;
}

Content with a border-image

What I want:

enter image description here

Is it possible to apply an opacity to the border-image only and not the content?

2 Answers
Related