Need help with CSS - How can I prevent elements from wrapping when the browser size changes? Check out this example
<div class="container">
<div class="row">
<div class="item">Item A</div>
<div class="item">Item B</div>
</div>
.container {
background: black;
position: absolute;
top: 10px;
width: 100%;
}
.row {
background: gray;
width: 100%;
}
.item {
background: blue;
float: left;
width: 300px;
height: 300px;
}