Hi guys, I am working on my portfolio right now, I want to know what I should do to make things work smooth. I did make cards and put the a link through html and image location through css. I am now looking to make a zoom effect and have an hard time making it happen. I wonder If I should change the html and css lines to include everything through HTML or should I keep what I got right now.
Sample of it:
<div class="container">
<div class="row" id="portfolio">
<div class="col-xs-12 col-sm-4">
<div class="card mvsite">
<a class="card-link" href="https://www........com/" target="blank"></a>
</div>
</div>
</div>
CSS:
.card {
height: 200px;
color: white;
background: linear-gradient(135deg, rgba(0,0,0,0), rgba(0,0,0,0.5));
background-size: cover;
position: relative;
padding: 25px;
margin: 25px;
}
.mvsite {
background-image: url("images/mvsite.png");
Thanks for your advices.