visibility and cursur

 <!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
body{
cursor: url('img/hand_cursor.svg'), auto;
}



.v{
height: 30px;
background: #112afa;
}
.d{
height: 30px;
background: #11fa8d;
}
</style>
</head>
<body>
<div>
There may be a case when an element's content might be larger than the
amount of space allocated to it. For example, the given width and height
properties do not allow enough room to accommodate the content of the
element.

<div class="v">
V
</div>
<div class="d">
D
</div>
CSS provides a property called overflow, which tells the browser what to do if the
box's contents is larger than the box itself. This property can take one of the
following values:
There may be a case when an element's content might be larger than the
amount of space allocated to it. For example, the given width and height
properties do not allow enough room to accommodate the content of the
element.
CSS provides a property called overflow, which tells the browser what to do if the
box's contents is larger than the box itself. This property can take one of the
following values:
</div>
</body>
</html>

Comments