Using the following code:

element{
    width:300px;
    border:9px solid;
    border-color:rgb(0,0,0);
    border-color:rgba(0,0,0, 0.7);
}

I end up with corners that are darker due to the overlay of the two borders... the only way I have found around this is to add a border-radius equal to the width of the border. Are there any other work arounds?

I have only tested in chrome at the moment, I don't have my other browsers available right now.

link|improve this question

I would also like to know, so here's an over-dramatized example: jsfiddle.net/4gutj/6 – Blender Apr 19 '11 at 21:37
feedback

2 Answers

up vote 1 down vote accepted

It's not very elegant, but you could make a wrapping <div> with a solid border and an opacity value: http://jsfiddle.net/4gutj/24/

HTML:

<div class="opacity-wrapper">
  <div class="transparent-border">Foo</div>
</div>

CSS:

.transparent-border {
    width:300px;
    font-size: 40px;
    padding: 10px;

    text-align: center;

    border:30px solid;
    border-color:rgb(0,0,0);
    border-color:rgba(0,0,0, 0.7);

    margin-bottom: 10px;
}

.opacity-wrapper {
    background-color: rgb(0, 0, 0);
    opacity: 0.7;

    padding: 30px;
    width:320px;
}

.opacity-wrapper div {
    padding: 10px;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);

    font-size: 40px;
    text-align: center;
}
link|improve this answer
I was hoping for something more elegant, but this was the best I could come up with as well. Thank you. – Chris Sobolewski Apr 21 '11 at 18:23
feedback

Also not very elegant but works is:

element{
    width:300px;
    border:9px solid;
    border-top-color: rgba(0,0,0, 0.7);
    border-bottom-color: rgba(0,0,0 0.7);
    border-right-color: rgba(1,1,1, 0.7);
    border-left-color: rgba(1,1,1 0.7);
}

The color differences cause the colors to meet at a 45% angle. You can also create bevels like this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.