I have 3 inline divs, with set width and height. They look great, then I add content inside one of the divs and all the sudden they don't line up any more in Chrome and Safari. (They also never line up in IE6 & 7 I would love to understand that as well.)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>What is going on?</title>
<style type="text/css">
.actionBox
{
width: 295px;
height: 215px;
margin: 0 5px 5px 0;
display: inline-block;
background-color: #BBB;
}
</style>
</head>
<body>
<div class='actionBox'>
*** TAKE THIS LIKE OF TEXT OUT AND THEY WILL ALL LINE UP AGAIN ***
</div>
<div class='actionBox'>
</div>
<div class='actionBox'>
</div>
</body>
</html>