Circular Image with HTML and CSS
Before<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>
body{
background-color: lightcoral;
}
.center{
width:100%;
height:100vh;
display: flex;
justify-content: center;
align-items: center;
}
.center img:hover{
border-radius: 50%;
border:10px solid greenyellow;
}
</style>
</head>
<body>
<div class="center">
<img src="mountai.jpg" height="300px" width="300px">
</div>
</body>
</html>
No comments :
Post a Comment