For one section of the webpage, I want one div all the way to the left that holds the social media icons (this is NOT fixed, only shows in one section) and right next to that I want a div that holds the content to be centered in the screen. How can this be done while keeping it responsive?
.row {
width:100%;
display:block;
box-sizing:border-box;
text-align:center;
}
.socialmediaicons {
max-width:50px;
display:inline-block;
}
.content {
max-width:920px;
display:inline-block;
}
page code
<div class="row">
<div class="socialmediaicons">
</div>
<div class="content">
</div>
</div>