Hi! well i have a problem im trying to put a large text inside a div "container" that has a multi column format whit css... but the background of the container doesnt adjust to all the text...
look at part of the code:
.container {
background:#000000;
padding:30px;
-ms-grid-column:1;
-ms-grid-row:1;
column-fill: auto;
column-gap: 40px;
column-width: 480px;
width:auto;
}


As you can see, is just that the black background doesnt wraps all the text (just the first column)..
If i try to get the container width whit Javascript i get only the width of the black back... and if i try to get the width of the whole document i get only my screen size... but i can scroll and everything
Thanks for the help!