← Back to Forum

Box

Posted on November 13, 2024, 12:40 pm


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
background-color: rgb(241, 236, 236);
}
.div1
{
width: 50px;
height: 50px;
border-width: 1px;
border-radius: 100px;
float: left;
background-image: url("phone.jpg");
background-size: cover;
margin-right: 10px;
}
.div1:hover{
width: 52px;
height: 52px;
}
</style>
</head>
<body>
<h1>Padding in HTML</h1>
<div class="div1">
</div>
<div class="div1">
</div>

</body>
</html>


Add a Reply


Replies (0)

No replies yet. Be the first to reply!