Skip to content

Instantly share code, notes, and snippets.

@jimmylatreille
Last active January 8, 2016 18:20
Show Gist options
  • Save jimmylatreille/6367079 to your computer and use it in GitHub Desktop.
Save jimmylatreille/6367079 to your computer and use it in GitHub Desktop.
Class CSS pour debuger avec var_dump() php ou print_r()
pre {
display: inline-block;
position: fixed;
top: 50%;
left: 50%;
padding: 30px;
background: #000;
z-index: 999;
height: 600px;
width: 30%;
color: #fff;
font-size: 1.5em;
border: 1px #000 solid;
box-shadow: 0px 0px 15px 1px #000;
overflow: scroll;
transform: translate(-50%, -50%);
}
/*Pour le fichier php*/
<!-- pour me debuger -->
<pre>
debuguer
</pre>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment