Utilizar este la información de esta pagina para saber las características del elemento

HTML Reference

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
margin: 0px;
}
div {
background-color: black;
color: azure;
width: 300px;
height: 26px;
}
button {
background-color: brown;
color: aliceblue;
width: 50px;
margin-left: 300px;
margin-top: 250px;
}
a {
background: skyblue;
width: 200px;
height: 200px;
margin: 20px;
}
</style>
</head>
<body>
<div>block</div>
<button>inline-block</button>
<a href="">inline</a>
</body>
</html>

Untitled

Untitled

Untitled