i want to certer the content of the content section, but when i tried to do that its centering in related of the page, i dont want that, this is my attempt:
.sideBar {
float: left;
width: 100px;
background: aqua;
overflow: hidden;
}
.content {
overflow: hidden;
background: yellow;
}
.inner {
left: 50%;
top: 50%;
position: absolute;
transform: translate(-50%, -50%);
}
<h1>Hello Plunker!</h1>
<div class="container">
<div class="sideBar">
<ul>
<li><a href="#">ANALYTICS</a></li>
</ul>
</div>
<div class="content">
<div class="inner">content</div
</div>
</div>