Which properties does this img element have?

<html>
<head>
<link rel="stylesheet" href="style.css">
<style>
img {
width: 100px;
height: 100px;
margin: 10px;
padding: 10px;
border: solid grey;
}
</style>
</head>
<body>
<img src="https://mimo.app/r/lighthouse.png">
</body>
</html>]]>
A padding, a border, and a marginA background color

A padding, a border, and a margin.