Friday, May 1, 2015

Center box with CSS in wordpress sylesheets.css thanks to: http://stackoverflow.com

.jqbox_innerhtml
{
    position: fixed;
    width:500px;
    height:200px;
    background-color:#FFF;
    padding:10px;
    border:5px solid #CCC;
    z-index:200;
    margin: 5% auto;
}
How to center this box with CSS?
Full code
<html>
<head>
<style>
body
{
    margin:0px;
}
.jqbox_shadow
{
    position: fixed;
    width: 100%;
    opacity: 0.9;
    top:0px;
    margin:0px;
    min-height:200px;
    height:100%;
    z-index: 0;
    background: #000;
    font-size: 20px;
    text-align: center;
}
.jqbox_innerhtml
{
    position: fixed;
    width:500px;
    height:200px;
    background-color:#FFF;
    padding:10px;
    border:5px solid #CCC;
    z-index:200;
    margin-left:auto;
    margin-right: auto;
}

</style>

No comments:

Post a Comment