Question: how to reduce the browser to reduce the div class = "three" from 600px to 300px, so that this block does not run into the central block
<style> .wrapper{ width: 100% } .one{ width: 240px; float: left; } .two{ margin-left:240px; margin-right:600px min-width: 720px; } .three{ max-width: 600px; min-width: 300px; float: right; } </style> </meta> </head> <body> <div class="wrapper"> <div class="one"> левый блок </div> <div class="two"> центральный блок </div> <div class="three"> правый блок </div> </div> </body> 