<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
#iframeContainer {
overflow: hidden;
position: relative;
width: 100%;
height: 800px;
}
#iframeContainer iframe {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 100%;
height: 130%; /* İsteğinize bağlı olarak bu değeri ayarlayabilirsiniz */
border: none;
}
</style>
</head>
<body>
<div id="iframeContainer">
<iframe src="örnek.com" frameborder="0" allowfullscreen></iframe>
</div>
</body>
</html>