How to get homepage div container of wordpress website to display full width? [duplicate]

As far as you are using home-page.php template only for main page, you can add class directly to container div and apply css rules to it:

<div id="container" class="on-main-page">...</div>

enter image description here

css:

#container.on-main-page {
 float: none;
 width: 100%;
}