I'm struggling with the placement of 3 absolute divs (app-block) within a larger container that has a specific width of 775px. Currently, the divs are set to float left, but I need them to be positioned absolutely so they remain fixed on smaller screens.
Css:
.app-container {
margin: 0 auto;
width:775px;
overflow:hidden;
}
.app-block { width:33.3%; float:left; }