CASO:
tengo un form de 80% de width y quiero centrarlo, lo esta conteniendo el body que tiene valor 100% width, NO ESTA DENTRO DE NINGUN DIV, he intentado centrarlo con las tipica etiquetas <center> pero no funciona el body tiene margin: 0 auto; las he cambiado y nada, he colocado align: center; y tampoco, alguien tiene alguna otra forma de que se centre, que no vaya ser text-align que de por cierto no funciona en este caso anexo codigo:
PHP - form (que lo incluyo luego en el index con un include )
Código:
ahora el css de ese PHP:<?php if (isset($_SESSION['ruta'])) { echo ' <link rel="stylesheet" href="'.$_SESSION['ruta'].'Lenguajes/CSS/Buscador.css" type="text/css" /> <form method="post" id="Contenedor-Buscador"> <input name="campo" placeholder="Escribe el texto Biblico o una palabra que se relacione..." id="Buscador" /> <span id="TextBusquedad">Buscar en:</span> <select id="SelectBuscador"> <option value="TODO">Todo</option> <option value="BIBLIAJS">Biblia de Jerusalén</option> <option value="BIBLIARV">Biblia Reina Valera</option> <option value="PROFESIAS">Profesias</option> <option value="REFLEXIONES">Reflexiones</option> </select> </form>'; } ?>
Código:
ahora, el css estandar de toda la web (que enlace al index)#Contenedor-Buscador { position: absolute; width: 80%; height: 20%; top: 25%; background: #81BEF7; } #Buscador { position:relative; width: 80%; height: 50px; padding-left: 15px; font: bold 25px Arial, Helvetica, sans-serif; border-radius: 10px; border: solid 2px #81BEF7; } #TextBusquedad { font: 15px Arial, Helvetica, sans-serif; } #SelectBuscador { }
Código:
Por ultimo, la web normal :)body { margin: 0; // AQUI LE COLOCO AUTO SI NO QUE SE LO QUITO PORQUE AHORA NO ME SIRVE xd JEJEJE :) padding: 0; } #Opacidad { background-color: #FFFFFF; width: 100%; height: 100%; position: fixed; z-index: -100; opacity: 0.5; }
Código:
<html> <?php //INCLUDE DE CONFIGURACION $_SESSION['seccion'] = ""; include_once ('Configuracion/Ruta.php'); include_once (''.$_SESSION['ruta'].'Configuracion/Constantes.php'); ?> <head> <link rel="stylesheet" href="<?php echo $_SESSION['ruta'].CSSestandar; ?>" type="text/css" /> <link rel="stylesheet" href="Lenguajes/CSS/Inicio.css" type="text/css" /> <meta content="text/html; charset=UTF-8" http-equiv="content-type" /> <title><?php echo Nombre; ?></title> </head> <body> <iframe id="video-background" src="//www.youtube.com/embed/okGcksYM0N8?rel=0&controls=0&showinfo=0&autoplay=1&html5=1&allowfullscreen=true&wmode=transparent" frameborder="0" allowfullscreen></iframe> <div id="Opacidad"></div> <div id="Contenedor-total"></div> <?php include_once (''.$_SESSION['ruta'].'Estandares/Logo.php'); ?> <?php include_once (''.$_SESSION['ruta'].'Estandares/Buscador.php'); ?> </body> </html>