为什么我的用了浮动布局,img移不出去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">
.demo{
width:640px;
padding:20px;
border: 1px solid #C36;
background:#0CF;
margin-left:100px;
position:relative;
}
.demo img{
float:left;
margin-right:20px;
}
</style>
</head>
<body>
<div class="demo">
<img src="car.jpg" width="80px" hight="80px"/>
<H5>中国西电</H5>
<p>随着互联网的发展速度迅猛,前端工程师职业越来越火热,想学习Web前端技能吗 ? 该路径从基础知识到实战案例演练,一步步带您快速掌握如何搭建网站静态页面、开发网站交互特效,为您打开WEB前端工程师大门。还在等什么?快来学习吧!</p>
<span id="min">十分钟</span>
</div>
</body>
</html>