I have a png image, it's a map, it represents 4 countries : france, italy, spain and germany, what I need to do, is to use CSS to devided and by passing cursor on each zone, i'll have a popup with name of every country.
Div doesn't need to be with exact shapes of every country.
Any idea how to put div for each zone inside this image please ?
For now i'm trying this :
container{
width : 100px;
height : 100px;
overflow : hidden;
}
and the HTML is :
<div class = "container"><img src="src/assets/img_map.png"/></div>