testernavodu
New Member
When you resize the window width in Safari, the last div box on the right side is not 100% aligned, instead 1-3px space between the last div box and the window border.Take a look with Safari and try to resize the width: http://jsfiddle.net/LPXfe/2/Any idea how to fix the space?HTML\[code\]<div class="outside"><div class="inside"></div><div class="inside"></div><div class="inside"></div><div class="inside"></div><div class="inside"></div></div>?\[/code\]CSS\[code\].html, body { width:100%; height: 100%;}.outside { width:100%; min-height: 500px; position: relative; display: inline-block;}.inside { width:25%; height: 299px; position: relative; float: left; background-color: #dcdcdc;}\[/code\]