w3.css 이미지 오버레이 아이콘 마우스 오버 시 이미지 오버레이 아이콘 효과를 만드는 방법을 알아보자. 오버레이 이미지 아이콘을 만드는 방법 1단계) HTML 추가 <!– Add icon library –> <link rel=”stylesheet” href=”https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css”> <div class=”container”> <img src=”img_avatar.png” alt=”Avatar” class=”image”> <div class=”overlay”> <a href=”#” class=”icon” title=”User Profile”> <i class=”fa fa-user”></i> </a> </div> </div> 2단계) CSS 추가 /* Container needed to position the overlay. Adjust the width as needed */ .container { position: relative; width: 100%; max-width: 400px; } /* Make the image to responsive…