I have a container of width 1300 px. Inside the container i have other div.
I need to set the inner div width equal to browser window size eg) 1900px.
The content should be responsive to the window size.
My html code is like below:
<div class="container">
<div class="content">Some style goes here </div>
</div>
Css:
.container {
width: 1300px;
}
.content{
width: 100%
}`