Hi,
They are aligned for me ok, you don't actually have those asterisk' in there do you?
HTML Code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>untitled</title>
<style>
.wrapper {
width: 400px;
height: 300px;
background: #000;
}
.right {
float: right;
height: 100px;
width: 200px;
background: #f000aa;
}
.left {
float: left;
height: 100px;
width: 200px;
background: #f0f0ee;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="right"></div>
<div class="left"></div>
</div>
</body>
</html>
Bookmarks