Sería asi
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" />
/*<![CDATA[*/
iframe {
width: 300px;
height: 200px;
position: absolute;
bottom: 50px;
left: 50%;
margin: 0 0 0 -150px;
}
/*]]>*/
El centrado lo obtenes con left: 50% y margin: valor negativo = a la mitad del ancho del iframe. por lo cual deberás
darle un ancho, cosa que no hiciste
Saludos