I used this css to center a fixed <div>
block. but it appears at the left bottom corner of <body>
.
What's the problem?
#console {
border-width: 1px;
border-style: solid;
border-color: black;
font-size: 16px;
margin: 0 auto;
position: fixed;
bottom: 0;
}
<div id="console">Example</div>