Which of these CSS properties are set on the img rule?

<html>
<head>
<style>

img {
margin-left:20px;
margin-right: 20px;
padding: 10px;
border:solid;
}
</style>
</head>
<body>
<h1>Top Destinations</h1>
<img width="100px"; src="https://mimo.app/r/eiffel.png">
<img width="100px"; src="https://mimo.app/r/tokyo.png">

</html>]]>
Both padding and marginOnly paddingOnly marginNeither padding nor margin

Make sure to choose both padding and margin.