In my code, I divided the width of the browser into 2 divs. I planned to use a hyperlink for each div, for example, two large buttons, but before doing this, I wanted to apply some kind of webkit filter to them to make them more intuitive as a button.
How can I apply a hyperlink to these divs and apply blur / blur on hover without blurring the text?
Here are the codes that I still use: (images are for test purposes only: P)
#containergaleria {
display: table;
width: 100%;
}
#containergaleria div {
display: table-cell;
width: 50%;
}
#imagens {background-image: url("http://gamerealla.ru/wp-content/uploads/2014/09/1392986721_r1.jpg");
background-position: right center;
}
#videos {background-image: url("http://gamehall.uol.com.br/v10/wp-content/uploads/2015/01/Black-Desert-Online-Beast-Master-Woman-02.jpg");
background-position: left center;
}
p.centertext {
margin-top: 25%;
margin-bottom: 25%
}
body {
overflow:hidden;
}
<div id="containergaleria">
<div id="imagens"><p class="centertext" align="right"><a class="button-medium pull-center" href="http://stackoverflow.com/" target="_blank">IMAGENS</a> </p></div>
<div id="videos"><p align="left"> <a class="button-medium pull-center" href="http://stackoverflow.com/" target="_blank">VÍDEOS</a></p></div>
</div>
Run code
source
share