This is my snippet:
<div class="main">
<a href="" target="_blank">
a
</a>
<a href="" target="_blank">
b
</a>
<a href="" target="_blank">
c
</a>
<a href="" target="_blank">
d
</a>
</div>
<style>
.main a {
background: blue;
width: 50px;
height:50px;
display: inline-block;
color: #ffffff;
}
.main a:hover {
}
</style>
I want to change the opacity to .5 of all the blue when i hovering each box, the result would be like this

is this possible with css?