Skip to content

Instantly share code, notes, and snippets.

@daniiable
Last active August 18, 2021 19:00
Show Gist options
  • Save daniiable/f8a08b4b8f9f0a7b7e08d94ce99712ec to your computer and use it in GitHub Desktop.
Save daniiable/f8a08b4b8f9f0a7b7e08d94ce99712ec to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang=''>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="CSS/styles.css">
<title>Reclutadores</title>
<style>
#contenedor {
width: 700px;
}
#cabecera {
}
#menu {
float: left;
width: 225px;
}
#contenido {
float: left;
width: 470px;
}
#pie {
clear: both;
}
**// prueba
.contenedor-responsive {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
.contenedor-responsive iframe,
.contenedor-responsive object,
.contenedor-responsive embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="contenedor">
<div id="cabecera">
Cabecera
</div>
<div id="menu">
<div id='cssmenu'>
Izquierda
</div>
</div>
<div id="contenido" class="contenedor-responsive">
<iframe frameborder="0" allowfullscreen="" src="http://blogdeprueba.blogspot.mx/" width="100px" height="600px" id="theIframe" name="emilgo" >Texto para cuando el navegador no conoce la etiqueta iframe</iframe>
</div>
<div id="pie">
Pie
</div>
</div>
</body>
<html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment