Php élément je n'arrive pas a centrer

momo75_7204 Messages postés 1 Date d'inscription   Statut Membre Dernière intervention   -  
 Zero -
bonjour quelqu'un pourait m'aider a centrer ces élément en php au centre de la page
merci d'avance.
<div id="sketchfab" >
<?php
while ($sketchfab = $sketchfabs->fetch())
{
    echo '<div class="sketchfab-embed-wrapper"><table>
  <iframe width="640" height="380" src="'.$sketchfab["url"].'/embed" frameborder="0" allow="autoplay fullscreen; ></iframe>';
 echo '<iframe width="640" height="380" src="'.$sketchfab["url"].'/embed" frameborder="0" allow="autoplay fullscreen; fullscreen; vr" mozallowfullscreen="true" webkitallowfullscreen="true"</iframe>';
    echo '<p style="width: 100%;display: table;float: top;margin:25px;border:25px;margin-top:25px;color: #4A4A4A;"><a href="'.$sketchfab["url"].'?utm_medium=embed&utm_source=website&utm_campaign=share-popup" target="_blank" style="font-weight: bold; color: #1CAAD9 ;">'.$sketchfab["legende"].'</a></div>';

}
?>


EDIT : Ajout des BALISES DE CODE

.

1 réponse

  1. Zero
     
    Bonjour,

    Tu as une balise <table> qui ne sert à rien.
    Certains attributs de tes iframes n'ont pas de double quote fermante, ni de chevrons fermants.

    float : top, ça n'existe pas.

    C'est ce que tu cherches à faire ?

    <!DOCTYPE html>
    <html>
    <head>
    	<title></title>
    	<style type="text/css">
    		.sketchfab-embed-wrapper {
    			text-align: center
    		}
    		.sketchfab-embed-wrapper iframe {
    			display: block;
    			margin: auto;
    		}
    	</style>
    </head>
    <body>
    	<div class="sketchfab-embed-wrapper">
    		<iframe width="640" height="380" src="https://www.commentcamarche.net" frameborder="0" allow="autoplay fullscreen;" ></iframe>
    		<iframe width="640" height="380" src="https://www.commentcamarche.net" frameborder="0" allow="autoplay fullscreen; fullscreen; vr" mozallowfullscreen="true" webkitallowfullscreen="true"></iframe>
    		<p style="width: 100%;display: table;margin:25px;border:25px;color: #4A4A4A;"><a href="https://www.commentcamarche.net" target="_blank" style="font-weight: bold; color: #1CAAD9 ;">Test</a>
    	</div>
    </body>
    </html>
    
    0