Given this html
<div id="my_div">
</div>
css
#my_div {
width: 100px;
height: 100px;
background-color: #0f0;
opacity: 0.4;
border: 3px solid #ff0000;
}
I want that own div tag will opacity
, but dont need border also.
css can make "non-opacity" border for "opacity" element?