div 左移动
为什么图片不能移到左边,就是移出这个div块
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>混合布局编程挑战</title>
<style type="text/css">
.demo03{width: 300px; background: #9cf;padding: 30px;margin-left: 100px;}
.demo03.img{float: left;margin-left: -100px; }
</style>
</head>
<body>
<div class ="demo03">
<img src="C:\Users\Administrator\Desktop.jpg">
<h1>樱桃小丸子</h1>
<p>樱桃小丸子是我最喜欢的一个卡通人物,他非常客观开朗,樱桃小丸子是我最喜欢的一个卡通人物,他非常客观开朗樱桃小丸子是我最喜欢的一个卡通人物,他非常客观开朗樱桃小丸子是我最喜欢的一个卡通人物,他非常客观开朗</p>
<span>13分钟之前</span>
</div>
</body>
</html>