没想到,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>contentEditable属性拉伸图片</title>
<style type"text/css">
<!--
img{width:208px; height:80px;}
.con{width:300px; height:300px;position:relative;
overflow:hidden; border:1px dashed #0066CC}
-->
</style>
</head>
<body>
<h1>contentEditable属性拉伸图片</h1>
<div class="con" contentEditable=true>
<img src="http://www.865171.cn/images/logo.gif" >
</div>
</body>
</html>