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 margin - Only
padding - Only
margin - Neither
padding nor margin Make sure to choose both padding and margin.